/*
Theme Name: Hello Elementor Child
Author: Elementor Team
Description: Hello Elementor Child
Version: 3.4.4
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)
*/
.page-header {
    display: none;
}
.service-box .elementor-image-box-content {
    height: 160px;
    padding: 0px 10px;
}

/* Base Form Styles */
.wpcf7 form {
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Label Styling */
.wpcf7 form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

/* Block-style Inputs & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f8f8f8;
  color: #000;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus / Hover Effects */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 4px #D4AF37;
  outline: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

/* Submit Button Hover */
.wpcf7 input[type="submit"]:hover {
  background-color: #D4AF37;
  color: #fff;
  border-color: #D4AF37;
}

.copyright-footer a{
	color: #D4AF37;
}

.cab-booking-wrap {
  max-width: 1000px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

.cab-booking-wrap .cab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.cab-booking-wrap .form-group {
  display: flex;
  flex-direction: column;
}

.cab-booking-wrap .form-group label {
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
	font-size:20px;
}

.cab-booking-wrap input,
.cab-booking-wrap select {
          margin-bottom: 8px;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    background-color: #f8f8f8;
    color: #000;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease !important;
	    padding: 12px 10px !important;
}

.cab-booking-wrap input:focus,
.cab-booking-wrap select:focus {
  border-color: #D4AF37;
    box-shadow: 0 0 4px #D4AF37;
    outline: none;
}

.cab-booking-wrap .submit-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
	font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.cab-booking-wrap .submit-btn:hover {
  background: #D4AF37;
  color: #fff;
}

.cab-booking-wrap .form-message {
	display:none;
   margin-top: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.cab-booking-wrap .pickup-time-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.cab-booking-wrap .pickup-time-row select {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.banner-form .cab-booking-wrap .form-group label
{
    color: #fff;
}
.banner-form .cab-booking-wrap .submit-btn {
   background: transparent;
    color: #fff;
    border: 1px solid #fff !important;
}

.banner-form .cab-booking-wrap .submit-btn:hover {
    border: 1px solid #D4AF37 !important;
	 background: #D4AF37;
}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.destination-card {
    width: 32%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.destination-image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 350px;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
    padding: 20px;
    color: #fff;
}

.destination-overlay h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.destination-overlay p {
    margin: 5px 0 0;
    font-size: 1em;
}

.plane-icon {
    margin-right: 5px;
}
/* .payment-type {
	margin-top: -40px;
} */
.destination-overlay a {
    text-decoration: none !important;
    color: #fff;
}
.destination-overlay a:hover {
    color: #D4AF37;
}
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

@media only screen and (max-width: 767px) {
.destination-card {
    width: 100%;
}
	.payment-type {
	margin-top: 0px;
}
	#cab-booking-form select{
	padding: 12px 10px !important; 
 /* Remove native styles */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='14' viewBox='0 0 20 20' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M5.5 7l4.5 4.5L14.5 7z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 25px;
  box-sizing: border-box;
}
#cab-booking-form input[type="date"] {
  -webkit-appearance: none; 
  appearance: none;
  padding: 12px 10px;
  box-sizing: border-box;
}

}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.destination-card {
    width: 48%;
}
}