/* region Page Title*/
.page-title-container {
    position: relative;
    padding: 0;
    overflow: hidden;
    max-height: 420px;
    max-width: 2048px;
}
.page-title-image {
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: left;
}
.page-title-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    color: whitesmoke;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px #000000d9;
    border-bottom: 2px solid rgb(255 255 255 / 35%);
    padding: 6px;
}
/* endregion */

/* region Google Maps */
.googleMaps-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    padding: 14px 28px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}
#googleMap {
    height: 450px;
    border-radius: 4px;
}
/* endregion */

/* region Contact Us */
.contactUs-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    padding: 14px 28px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}
/* endregion */

/* region Contact Us Form */
.form-head {
    display: block;
    font-family: Poppins, sans-serif;
    color: #555e62;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}
.form-input {
    display: block;
    width: 100%;
    height: 42px;
    color: #666666;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    background-color: rgb(254 254 254);
    padding: 10px 12px;
    font-size: 16px;
}
/* For most modern browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
#contactForm-countryCode::placeholder {
    color: rgba(0, 0, 0, 0.25); /* Adjust the alpha value for opacity */
}
#phone {
    font-family: monospace;
    letter-spacing: 3px;
    /*width: 200px; /* Adjust the width as needed */
}
#contactForm-messageContent {
    min-height: 256px;
}
.form-wrongUserInput {
    display: none; /* Will be block; if there is any user input error */
    font-family: Poppins, sans-serif;
    color: red;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    border: 2px solid red;
    padding: 10px 12px;
}
.form-submit-success {
    display: none; /* Will be block; when the form submitted succesfully! */
    font-family: Poppins, sans-serif;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    padding: 16px 8px;
}

.form-sent-btn {
    display: inline-block;
    background-color: #434854;
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(51, 57, 64, 0.2);
    transition: all 0.3s ease;
    transform: scale(1);
}
.form-sent-btn:hover {
    background-color: #3f4a51;
    box-shadow: 0 7px 20px rgb(120 128 150 / .85);
    transform: scale(1.025);
}
.form-sent-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 128, 0.5);
}
/* endregion */

/* region Contact Form Succesfully Send Modal */
.modal-sendSuccess > .modal-content {
    border: 2px solid #e0e0e0;
}
.modal-sendSuccess > .modal-content > .modal-header > .modal-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    margin-right: 32px;
    padding: 0 16px;
}
.modal-sendSuccess > .modal-content > .modal-header > .btn-close {
    margin-right: var(--bs-modal-padding) !important;
    color: #434854;
    background-image: url("../images/close-btn-292c33.png");
    opacity: .75;
}
.modal-sendSuccess > .modal-content > .modal-header > .btn-close:hover,
.modal-sendSuccess > .modal-content > .modal-header > .btn-close:focus {
    opacity: 1;
}
.modal-sendSuccess > .modal-content > .modal-header > .btn-close:focus {
    box-shadow: 0 0 0 0.25rem #767f94;
}
.sendSuccess-info {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #383838;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 0;
}
#contacter-fullName {
    font-weight: bold;
    text-shadow: none;
}
/* endregion */