/*
Theme Name: Hello Elementor Child Theme
Author: Signature Travels Web Team
Description: A custom child theme for the Signature Travels website, built on top of the Hello Elementor theme. This child theme is designed to provide full customization for a travel and tour agency website, including personalized layouts, booking integrations, and modern styling to enhance the travel experience.
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

#search-tour-home .search-tour-form.signature-form-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: #125B64;
  padding: 15px;
  border-radius: 12px;
}

/* First row (3 fields) */
#search-tour-home .search-tour-form.signature-form-wrap > p:nth-child(1) { grid-column: span 2; }
#search-tour-home .search-tour-form.signature-form-wrap > p:nth-child(2) { grid-column: span 2; }
#search-tour-home .search-tour-form.signature-form-wrap > p:nth-child(3) { grid-column: span 1; }

/* Second row: all 5 equal */
#search-tour-home .row-2-fields {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  grid-column: 1 / -1; /* span full width */
}

.row-2-fields p {
  margin: 10;
	color:#fff;
}

/* Submit button */
#search-tour-home input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: none;
  background: #EFAA21;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

#search-tour-home input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background: #fff;
  color: #125B64;
}
#search-tour-home p#sub-bn {
    margin-top: 16px;
}
/* Responsive */
@media (max-width: 768px) {
  #search-tour-home .search-tour-form.signature-form-wrap {
    grid-template-columns: 1fr;
  }
  #search-tour-home .row-2-fields {
    grid-template-columns: 1fr;
  }
}

/* Mobile full width */
@media (max-width: 768px) {
  #search-tour-home .search-tour-form.signature-form-wrap p {
    grid-column: span 1 !important; 
    width: 100%;
  }

  #search-tour-home input,
  #search-tour-home select {
    width: 100% !important;
  }

  #search-tour-home input.wpcf7-submit {
    width: 100% !important;
  }
}


#search-tour-home p {
  margin-bottom: 10;
	color:#fff;
}
