/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://www.shutterstock.com/image-vector/travel-by-car-world-planning-600nw-1531322804.jpg'); /* Add a travel-themed background image */
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Optional dark overlay for better text readability */
    overflow: hidden; /* Prevents unwanted horizontal scroll */
}

/* Form container styling */
.booking-form-container {
    background-color: rgba(255, 255, 255, 0.9); /* Slight transparency */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow for 3D effect */
    max-width: 800px;
    width: 100%;
    margin: 20px;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
}

/* Ensure form stays centered on all devices */
@media (max-width: 768px) {
    .booking-form-container {
        max-width: 100%;
        margin: 0 auto; /* Centers the form */
    }
}

h1, h2 {
    text-align: center;
    color: #0056b3;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select {
    width: 100%; /* All inputs take full width */
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    transition: border 0.3s ease;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

button:hover {
    background-color: #218838;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 15px;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    select {
        padding: 10px;
        font-size: 14px;
    }
    button {
        padding: 10px;
        font-size: 16px;
    }
}
/* Google Translate Button Styling */
#google_translate_element {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1001;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #4285F4;
}

/* Styling the Google Translate Dropdown */
.goog-te-gadget-simple {
    background-color: #4285F4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.goog-te-gadget-simple:hover {
    background-color: #357ae8;
}

.goog-te-gadget-icon {
    display: none; /* Hides the default Google icon */
}

/* Dropdown styling */
.goog-te-combo {
    margin-left: 8px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    color: #4285F4;
    cursor: pointer;
}

/* Adjust mobile display */
@media (max-width: 768px) {
    #google_translate_element {
        right: 50%;
        bottom: 80px;
        transform: translateX(50%);
    }
    .whatsapp-button {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
    }
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 1000; /* High z-index to ensure it stays on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .whatsapp-button img {
    height: 24px; /* Icon size */
    margin-right: 10px; /* Spacing between icon and text */
  }
  @media (max-width: 768px) {
  .whatsapp-button {
      right: 50%;
      bottom: 20px;
      transform: translateX(50%);
  }
  }
