
.servicePage {
    position: relative;
    display: flex;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    padding: 5vh;   
}

.pageTitle {
    position: relative;
    color: white;
    top: 0;
}

hr {
    width: 80%;
    border-radius: 10px;
    border: solid black 3px;
    margin-top: 1px;
    margin-bottom: 10px;
}

.infoCardsContainer {
    position:relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
    top: 3rem;
    overflow-y: scroll;


}

.card {
    max-height: fit-content;
}

.infoCard {
    height: 33vh;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 10%;
    background: #f9f9f9;
    box-shadow: 0 10px 4px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-text {
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.servicePrice {
    position: absolute;
    bottom: 5%;
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--cFooter);
}

/*----- CONTACT FORM SECTION -----*/
.contactContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    bottom: -3rem;
    margin-bottom: 2rem;
    color: white;
    font-size: 15px;
}

.modal-content {
    background-color: var(--background);
    color: white;

}
.modal-body {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to bottom,var(--cHeader), var(--cFooter));
}

#serviceSelect {
    display: flex;
    justify-content: center;
    padding-bottom: 2%;
    border-radius: 30px 0px 25px 25px;
    box-shadow: -3px 5px 4px rgba(0, 0, 0, 0.50);
    gap: 10px;
}
#serviceSelect label{
    color: rgba(255, 255, 255, 0.85);
}

#deadlineSelect {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: .85rem;
}
#deadlineSelect select {
    border:none;
    box-shadow: -3px 5px 4px rgba(0, 0, 0, 0.7);
    border-radius: 20px 0 0 20px;
    padding: 0;
    padding-left: 42%;
    font-size: 20px;
    font-family: ariel;
    opacity: .75;
}
.deadlineRadio {
    display: flex;
    border: none;
    border-radius: 20px;
    padding: .25rem .5rem;
    width: fit-content;
    gap: .5rem;
    background-color: var(--cFooter);
    color: white;
}

.serviceDetailSection {
    background-color: var(--cFooter);
    min-width: 80%;
    min-height: 50%;
    display: flex;
    flex-direction: column ;
    padding: 2%;
    gap: .75rem; 
    border-radius: 20px;
    text-align: center;
    text-shadow: -1px 3px 3px black;
}
.formTextarea {
    gap: .315;
    display: none;
}
.formTextarea span, .modalName span, .modalContact span, .preferedContact span {
    display: flex;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    background-color: var(--background);
    color: white;
    border-radius: 30px;
    border: solid  4px var(--cFooter);
    box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.75);
}
.formTextarea textarea, .modalName input, .modalContact input {
    background-color: rgba(255, 255, 255, 0.7);
    color: black ;
    font-weight: 200;
    border-radius: 30px;
    border: none;
    box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.73);
}

#modalHr {
    background-color: rgba(255, 255, 255, 0.76);
    height: 3px;
    border-radius: 10px 95px;
    border: solid 1px silver;
    width: 30%;
    box-shadow: 0 0 7px white;
    position: relative;
    top: -.5rem;
}
.modalName, .modalContact, .preferedContact {
   gap: .315rem;
   margin: .5rem 0;
}
.contactSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4%;
}
.preferedContact {
    align-items: center;
}
.preferedContact select {
    border-radius: 0 20px 20px 0;
    width: 35%;
    padding: .53rem .35rem;
    margin-left: -.25rem;
    display: none;
}
.formSubmit{
    display: flex ;
    justify-content: center ;
    margin-top: 1rem;
    background-color: var(--cHeader);
    padding: 1rem;
    border-radius: 28px;
    opacity: .95;
}
#serviceFormBtn {
    border-radius: 30px;
    padding: .5rem 2rem;
    box-shadow: -3px 5px 4px rgba(0, 0, 0, 0.7);
    font-size: 18px;
    font-weight: 500;
    width: 35%;
    opacity: .85;
    padding: 10px 0;
}
.modal-footer {
    display: flex ;    
    justify-content: center 
}

/*----- END CONTACT FORM SECTION -----*/


