/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1769745201
Updated: 2026-01-30 03:53:21

*/

.psgallery img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}


.cf7-custom-form {
  background-color: #000;
  padding: 2rem;
  border-radius: 12px;
  max-width: 640px;
  margin: 0 auto;
}

/* Form rows - flex for two-column layout */
.cf7-form-row {
  margin-bottom: 1.25rem;
}

.cf7-two-col {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cf7-two-col .cf7-field-wrap {
  flex: 1 1 calc(50% - 0.625rem);
  min-width: 0;
}

/* Field wrapper */
.cf7-field-wrap {
  display: flex;
  flex-direction: column;
}

.cf7-field-wrap.cf7-full {
  width: 100%;
}

/* Labels - white text */
.cf7-custom-form label {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

/* Required asterisk - orange */
.cf7-required {
  color: #ff9c00;
}

/* Inputs - white bg, rounded, light border */
.cf7-input,
.cf7-custom-form input[type="text"],
.cf7-custom-form input[type="email"],
.cf7-custom-form input[type="tel"],
.cf7-custom-form select,
.cf7-custom-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  color: #111;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.cf7-custom-form input::placeholder,
.cf7-custom-form textarea::placeholder {
  color: #9ca3af;
}

.cf7-custom-form input:focus,
.cf7-custom-form select:focus,
.cf7-custom-form textarea:focus {
  outline: none;
  border-color: #ff9c00;
}

/* Select dropdown - native arrow, no extra bg */
.cf7-select,
.cf7-custom-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.25rem;
}

/* Textarea - taller */
.cf7-textarea,
.cf7-custom-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button - orange, full width, pill shape */
.cf7-submit-row {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.cf7-submit,
.cf7-custom-form input[type="submit"] {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #ff9c00;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cf7-submit:hover,
.cf7-custom-form input[type="submit"]:hover {
  background-color: #e68a00;
}

.cf7-submit:active,
.cf7-custom-form input[type="submit"]:active {
  transform: scale(0.99);
}

/* Validation / CF7 messages */
.cf7-custom-form .wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.cf7-custom-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: #f87171;
}

.cf7-custom-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
}

/* Spinner next to submit */
.cf7-custom-form .ajax-loader {
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ========== RESPONSIVE ========== */

/* Tablet: keep two columns but reduce padding */
@media (max-width: 768px) {
  .cf7-custom-form {
    padding: 1.5rem;
  }

  .cf7-two-col {
    gap: 1rem;
  }

  .cf7-two-col .cf7-field-wrap {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

/* Mobile: stack all fields in one column */
@media (max-width: 576px) {
  .cf7-custom-form {
    padding: 1.25rem;
    border-radius: 8px;
  }

  .cf7-form-row {
    margin-bottom: 1rem;
  }

  .cf7-two-col {
    flex-direction: column;
    gap: 0;
  }

  .cf7-two-col .cf7-field-wrap {
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 1rem;
  }

  .cf7-two-col .cf7-field-wrap:last-child {
    margin-bottom: 0;
  }

  .cf7-custom-form label {
    font-size: 0.875rem;
  }

  .cf7-input,
  .cf7-custom-form input[type="text"],
  .cf7-custom-form input[type="email"],
  .cf7-custom-form input[type="tel"],
  .cf7-custom-form select,
  .cf7-custom-form textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }

  .cf7-submit,
  .cf7-custom-form input[type="submit"] {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .cf7-custom-form {
    padding: 1rem;
  }
}