
.contact-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
  position: relative;
}

.section-header {
  margin-bottom: 30px;
}


.section-header span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a52a2a;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  padding: 0 50px;
}

.section-header span::before,
.section-header span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #a52a2a, #e8d5c3);
  transform: translateY(-50%);
}

.section-header span::before {
  left: 0;
}

.section-header span::after {
  right: 0;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header h2 .highlight {
  color: #a52a2a;
  position: relative;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section .row .col {
  width: 48%;
}

.contact-info .info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0e8e0;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item:first-child {
  padding-top: 0;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgba(198, 160, 123, 0.1) 0%,
    rgba(198, 160, 123, 0.05) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: linear-gradient(135deg, #a52a2a 0%, #d4b48c 100%);
  transform: scale(1.05);
}

.info-icon i {
  font-size: 24px;
  color: #a52a2a;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon i {
  color: #ffffff;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Social Links */
.social-links {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-links h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #f8f5f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #a52a2a;
  text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #a52a2a 0%, #d4b48c 100%);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #f0e8e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1a1a1a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a52a2a;
  box-shadow: 0 0 0 3px rgba(198, 160, 123, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
  color: #666;
}

.btn-submit {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Nunito Sans", sans-serif;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #a52a2a 0%, #d4b48c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(198, 160, 123, 0.3);
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

.form-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 36px;
  }

  .contact-section .row .col {
    width: 100%;
  }

  .contact-section .row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info .info-card,
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header span::before,
  .section-header span::after {
    width: 20px;
  }

  .info-item {
    gap: 15px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
  }

  .info-icon i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .section-header h2 {
    font-size: 24px;
  }
}
