/* Custom Contact Form - Modern Styling with #ff7903 Color Scheme */
.custom-contact-form-2025__container {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
}

.custom-contact-form-2025__container::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: #ff7903;
  border-radius: 8px 8px 0 0;
}

.custom-contact-form-2025__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  position: relative;
  padding-bottom: 12px;
}

.custom-contact-form-2025__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #ff7903;
  border-radius: 2px;
}

.custom-contact-form-2025__form-group {
  position: relative;
  margin-bottom: 28px;
}

.custom-contact-form-2025__input,
.custom-contact-form-2025__textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e2e2e2;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
  background-color: #fafafa;
}

.custom-contact-form-2025__input:focus,
.custom-contact-form-2025__textarea:focus {
  border-color: #ff7903;
  box-shadow: 0 0 0 3px rgba(255, 121, 3, 0.2);
  background-color: #fff;
}

.custom-contact-form-2025__input::placeholder,
.custom-contact-form-2025__textarea::placeholder {
  color: transparent;
}

.custom-contact-form-2025__floating-label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 16px;
  color: #888;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.custom-contact-form-2025__input:focus ~ .custom-contact-form-2025__floating-label,
.custom-contact-form-2025__input:not(:placeholder-shown) ~ .custom-contact-form-2025__floating-label,
.custom-contact-form-2025__textarea:focus ~ .custom-contact-form-2025__floating-label,
.custom-contact-form-2025__textarea:not(:placeholder-shown) ~ .custom-contact-form-2025__floating-label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  color: #ff7903;
  font-weight: 600;
  padding: 0 6px;
  background: white;
}

.custom-contact-form-2025__textarea {
  min-height: 140px;
  resize: vertical;
}

.custom-contact-form-2025__captcha-container {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  gap: 15px;
}

.custom-contact-form-2025__captcha-image {
  width: 180px;
  height: 60px;
  background-color: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}

.custom-contact-form-2025__refresh-captcha:hover {
  transform: rotate(180deg);
	cursor: pointer;
}

.custom-contact-form-2025__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.custom-contact-form-2025__submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 30px;
  background: #ff7903;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 121, 3, 0.3);
}

.custom-contact-form-2025__submit-button:hover {
  background: #e26a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 121, 3, 0.4);
}

.custom-contact-form-2025__submit-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 121, 3, 0.4);
}

.custom-contact-form-2025__loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: custom-contact-form-2025__spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes custom-contact-form-2025__spin {
  to {
    transform: rotate(360deg);
  }
}

.custom-contact-form-2025__social-links {
  display: flex;
  gap: 12px;
}

.custom-contact-form-2025__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-contact-form-2025__social-link:hover {
  background: #ff7903;
  color: white;
  transform: translateY(-3px);
}

.custom-contact-form-2025__facebook:hover {
  background: #3b5998;
}

.custom-contact-form-2025__youtube:hover {
  background: #ff0000;
}

.custom-contact-form-2025__instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.custom-contact-form-2025__x:hover {
  background: #000000;
}

.custom-contact-form-2025__success-message,
.custom-contact-form-2025__error-message {
  display: none;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-contact-form-2025__success-message {
  background-color: rgba(37, 211, 102, 0.1);
  color: #0a8043;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.custom-contact-form-2025__error-message {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.custom-contact-form-2025__success-message.show,
.custom-contact-form-2025__error-message.show {
  display: block;
  opacity: 1;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .custom-contact-form-2025__container {
    padding: 30px 20px;
    margin: 20px auto;
  }
  
  .custom-contact-form-2025__form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .custom-contact-form-2025__social-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .custom-contact-form-2025__submit-button {
    width: 100%;
  }
}

/* Animation Effects */
@keyframes custom-contact-form-2025__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-contact-form-2025__container {
  animation: custom-contact-form-2025__fadeIn 0.6s ease-out;
}

.custom-contact-form-2025__form-group:nth-child(1) {
  animation: custom-contact-form-2025__fadeIn 0.6s ease-out 0.1s both;
}

.custom-contact-form-2025__form-group:nth-child(2) {
  animation: custom-contact-form-2025__fadeIn 0.6s ease-out 0.2s both;
}

.custom-contact-form-2025__form-group:nth-child(3) {
  animation: custom-contact-form-2025__fadeIn 0.6s ease-out 0.3s both;
}

.custom-contact-form-2025__form-group:nth-child(4) {
  animation: custom-contact-form-2025__fadeIn 0.6s ease-out 0.4s both;
}

/* Focus effect */
.custom-contact-form-2025__input:focus,
.custom-contact-form-2025__textarea:focus {
  transform: translateY(-2px);
}

.custom-contact-form-2025__intro {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.custom-contact-form-2025__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 8px;
}

.custom-contact-form-2025__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ff7903;
  border-radius: 2px;
}

.custom-contact-form-2025__divider {
  height: 1px;
  background: #e2e2e2;
  margin: 30px 0;
  position: relative;
}

.custom-contact-form-2025__divider::before {
  content: "OR";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 0 15px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.custom-contact-form-2025__direct-contact {
  margin-top: 30px;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid #ff7903;
}

.custom-contact-form-2025__email-direct {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  font-size: 18px;
}

.custom-contact-form-2025__email-direct i {
  color: #ff7903;
  font-size: 22px;
}

.custom-contact-form-2025__email-direct a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-contact-form-2025__email-direct a:hover {
  color: #ff7903;
  text-decoration: underline;
}

.custom-contact-form-2025__note {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background-color: #f5f5f5;
  border-left: 3px solid #ff7903;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.custom-contact-form-2025__note p {
  margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .custom-contact-form-2025__container {
    padding: 25px 20px;
  }
  
  .custom-contact-form-2025__title {
    font-size: 28px;
  }
  
  .custom-contact-form-2025__subtitle {
    font-size: 18px;
  }
  
  .custom-contact-form-2025__direct-contact {
    padding: 20px 15px;
  }
  
  .custom-contact-form-2025__email-direct {
    font-size: 16px;
  }
  
  .custom-contact-form-2025__email-direct i {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .custom-contact-form-2025__container {
    padding: 20px 15px;
  }
  
  .custom-contact-form-2025__title {
    font-size: 24px;
  }
  
  .custom-contact-form-2025__intro {
    font-size: 14px;
  }
  
  .custom-contact-form-2025__subtitle {
    font-size: 16px;
  }
  
  .custom-contact-form-2025__direct-contact {
    padding: 15px 12px;
  }
  
  .custom-contact-form-2025__email-direct {
    font-size: 14px;
    gap: 10px;
  }
  
  .custom-contact-form-2025__email-direct i {
    font-size: 16px;
  }
}