/* Company Brief and Contact Form Sections */

/* Company Brief Section */
.company-brief-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.company-brief-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.company-brief-content {
  flex: 1;
}

.company-brief-text {
  margin: 24px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.company-brief-text p {
  margin-bottom: 16px;
}

.company-brief-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #bfa16b;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.company-brief-image {
  flex: 1;
  max-width: 500px;
}

.company-brief-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Load More Section */
.load-more-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.load-more-container {
  max-width: 800px;
  margin: 0 auto;
}

.load-more-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.load-more-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.load-more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #bfa16b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.load-more-button:hover {
  background-color: #a08951;
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background-color: #171e22;
  padding: 80px 0;
  position: relative;
  color: #e7e6dd;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #2d3336, transparent);
}

.contact-form-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-content {
  flex: 1;
  max-width: 400px;
}

.contact-form-text {
  margin: 24px 0;
  color: #e7e6dd;
  font-size: 16px;
  line-height: 1.7;
}

.contact-form-text.light {
  color: #e7e6dd;
}

.contact-info {
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #666;
}

.contact-info-item.light {
  color: #e7e6dd;
}

.contact-info-item svg {
  color: #bfa16b;
}

.contact-form-wrapper {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper.dark {
  background: #23282b;
  border: 1px solid #2d3336;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.contact-form-wrapper.dark .form-group label {
  color: #e7e6dd;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.contact-form-wrapper.dark .form-group input,
.contact-form-wrapper.dark .form-group select,
.contact-form-wrapper.dark .form-group textarea {
  background-color: #171e22;
  border: 1px solid #2d3336;
  color: #e7e6dd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #bfa16b;
  box-shadow: 0 0 0 2px rgba(191, 161, 107, 0.1);
  outline: none;
}

.form-submit {
  margin-top: 12px;
}

.submit-button {
  background-color: #bfa16b;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: #a08951;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .company-brief-container,
  .contact-form-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .company-brief-image,
  .contact-form-content {
    max-width: 100%;
  }
  
  .company-brief-stats {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .company-brief-section,
  .contact-form-section {
    padding: 60px 0;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .company-brief-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-item {
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
}