.contact-form-section {
  background: white;
}

.contact-form-section img.green-scribble {
  position: absolute;
  right: -30%;
  bottom: 5%;
  width: 600px;
}

.contact-form-section img.swiper-button-image.dark {
  filter: brightness(0);
    height: 20px;
}

.contact-form-section .content-area {
  background: #f8f9fa !important;
  min-height: 500px;
  position: relative;
}

.contact-form-section .announcement {
  text-align: center;
  font-size: 1rem;
}

.contact-form-section .announcement strong {
  color: #2c3e50;
}

.contact-form-section .image-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.contact-form-section .contactImagesSwiper {
  border-radius: 8px;
  overflow: hidden;
}

.contact-form-section .contact-image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.contact-form-section .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.contact-form-section .fallback-image-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.contact-form-section .fallback-image-wrapper .contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Swiper Navigation */
.contact-form-section .contact-prev,
.contact-form-section .contact-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.contact-form-section .contact-prev {
  left: 0px;
}

.contact-form-section .contact-next {
  right: 0px;
}

.contact-form-section .contact-prev:hover,
.contact-form-section .contact-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.contact-form-section .contact-prev::after {
  content: "";
  font-size: 18px;
}

.contact-form-section .contact-next::after {
  content: "";
  font-size: 18px;
}

/* Contact Form Styling */
.contact-form-section .contact-form-wrapper {
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.contact-form-section .contact-form-title {
  font-size: 2.5rem;
  color: #8bb649;
}

.contact-form-section .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
  margin-top: 0.5rem;
}

.contact-form-section .form-control {
  border: 2px solid #e9ecef;
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: #8bb649;
  box-shadow: 0 0 0 0.2rem rgba(139, 182, 73, 0.25);
  outline: none;
}

.contact-form-section .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: 600;
  text-transform: lowercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-form-section .btn-warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-form-section .content-area {
    margin-bottom: 2rem;
  }

  .contact-form-section .content-area h2 {
    font-size: 1.75rem;
  }

  .contact-form-section .contact-form-title {
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form-section .content-area {
    padding: 1.5rem;
  }

  .contact-form-section .content-area h2 {
    font-size: 1.5rem;
  }

  .contact-form-section .contact-form-wrapper {
    padding: 1rem;
  }

  .contact-form-section .contact-form-title {
    font-size: 1.75rem;
  }
}
