/* Consultation Page Styles */
.consultation-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: hidden;
  background: linear-gradient(135deg, #8A7968 0%, #4A4238 100%);
}

.consultation-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(74, 66, 56, 0.3), rgba(74, 66, 56, 0.7));
  z-index: 1;
}

.consultation-hero .hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.consultation-hero h1 {
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 20px;
  line-height: 1.2;
}

.consultation-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Consultation Form Section */
.consultation-section {
  padding: 80px 0;
  background-color: var(--color-off-white);
}

.consultation-header {
  text-align: center;
  margin-bottom: 60px;
}

.consultation-header h2 {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 15px;
  font-weight: 100;
}

.consultation-header p {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Form Container */
.consultation-form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(138, 121, 104, 0.08);
  overflow: hidden;
}

.luxury-form {
  padding: 50px;
}

/* Form Sections */
.form-section {
  margin-bottom: 50px;
  border: none;
  padding: 0;
}

.form-section:last-of-type {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 100;
  color: var(--color-accent);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-secondary);
  width: 100%;
  float: none;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Form Labels */
.form-label {
  display: block;
}

.label-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-secondary);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--color-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

/* Input Underline Animation */
.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.4s ease;
}

.form-input:focus+.input-underline,
.form-textarea:focus+.input-underline,
.form-select:focus+.input-underline {
  width: 100%;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Select Styling */
.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 35px;
  background-image: none;
}

.select-arrow {
  position: absolute;
  right: 0;
  bottom: 16px;
  pointer-events: none;
  color: var(--color-text-light);
  font-size: 12px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.form-select:focus+.select-arrow {
  transform: rotate(180deg);
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 5px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.radio-custom,
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-custom {
  border-radius: 4px;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked~.radio-custom,
.checkbox-option input[type="checkbox"]:checked~.checkbox-custom {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.radio-option input[type="radio"]:checked~.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
}

.checkbox-option input[type="checkbox"]:checked~.checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 12px;
  font-weight: bold;
}

.radio-text,
.checkbox-text {
  font-size: 15px;
  color: var(--color-text);
}

/* Form Hints */
.form-hint {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 8px;
  opacity: 0.8;
}

/* Form Footer */
.form-footer {
  padding-top: 40px;
  border-top: 1px solid var(--color-secondary);
}

.privacy-notice {
  margin-bottom: 30px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.privacy-custom {
  min-width: 20px;
  height: 20px;
  border: 2px solid var(--color-secondary);
  border-radius: 4px;
  margin-right: 15px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
}

#privacy_agreement {
  position: absolute;
  opacity: 0;
}

#privacy_agreement:checked~.privacy-custom {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

#privacy_agreement:checked~.privacy-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 14px;
  font-weight: bold;
}

.privacy-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.privacy-link:hover {
  border-bottom-color: var(--color-primary);
}

/* Form Actions */
.form-actions {
  text-align: center;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-luxury:hover {
  background: #7b6b5b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(138, 121, 104, 0.2);
}

.btn-luxury:active {
  transform: translateY(0);
}

.btn-icon {
  margin-left: 10px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-luxury:hover .btn-icon {
  transform: translateX(5px);
}

.form-note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 15px;
  font-style: italic;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.process-title {
  text-align: center;
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 50px;
  font-weight: 100;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 30px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 100;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 15px;
  font-weight: 100;
}

.step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .consultation-hero h1 {
    font-size: 36px;
  }

  .consultation-form-container {
    margin: 0 20px;
  }

  .luxury-form {
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .consultation-hero {
    height: 50vh;
  }

  .consultation-hero h1 {
    font-size: 28px;
  }

  .consultation-header h2 {
    font-size: 28px;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
    gap: 15px;
  }

  .btn-luxury {
    width: 100%;
    justify-content: center;
  }
}