/*--------REVIEWS--------*/
body.reviews1111 {
    background-color: #AACFD4;
    overflow-x: hidden;
}

#main-revcontent2 {
    margin-top: 8%;
    margin-bottom: -25px;
}

.rev-container {
    width: 100%;
    max-width: 1200px;
    margin: 5% auto 0 auto;
    padding: 1rem 1rem 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(2, 1fr));
    gap: 2rem;
}

.rev-container_left h1 {
    margin-top: 21px;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 500;
    color: #750029;
}

.rev-container_left p {
    color: #333;
    margin-bottom: 1rem;
}

.rev-container_left button {
    padding: 1rem 2rem;
    margin-top: 1rem;
    outline: none;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #ff226f, #fe6769);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.rev-container_right {
    display: grid;
    gap: 2rem;
    padding-top: 35px;
    margin-bottom: 40px;
}

.rev-card {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: #cdd1d2;
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgb(0 0 0 / .2);
    cursor: pointer;
}

.rev-card img {
    max-width: 75px;
    border-radius: 100%;
}

.rev-card_content {
    display: flex;
    gap: .2rem;
}

.rev-card_content span i {
    font-size: 2rem;
    color: #ff226f;
}

.rev-card_details p {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.rev-card_details h4 {
    text-align: right;
    color: #B3003E;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width:600px) {
    #main-revcontent2 {
        margin-top: 22%;
        padding-top: 25px;
    }

    .rev-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .rev-container_left h1 {
        font-size: 1.4rem;
    }

    .rev-card_details p,
    .rev-container_left p {
        font-size: 1rem;
    }

    .rev-container_left button {
        padding: .8rem 1.5rem;
        font-size: .8rem;
    }

    .rev-card img {
        max-width: 40px;
    }

    .rev-card_content span i {
        font-size: 1rem;
    }

    .rev-card_details h4 {
        font-size: .8rem;
    }
}

@media (min-width:601px) and (max-width:1023px) {
    #main-revcontent2 {
        margin-top: 15%;
    }

    .rev-container {
        grid-template-columns: repeat(auto-fit, minmax(601px, 1fr));
        gap: 3rem;
    }

    .rev-container_left h1 {
        font-size: 2.2rem;
    }

    .rev-container_left p {
        font-size: 1.2rem;
    }

    .rev-card img {
        max-width: 50px;
    }

    .rev-card_content span i {
        font-size: 1.5rem;
    }

    .rev-card_content p {
        font-size: 1.1rem;
    }

    .rev-card_details h4 {
        font-size: 1.2rem;
        text-align: justify;
    }
}

@media (min-width:1024px) {
    .rev-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10rem;
    }

    .rev-card_details h4 {
        text-align: right;
    }

    .rev-container_left p {
        font-size: 1.2rem;
    }
}

/*--------FAQ--------*/
body.faq1111 {
    background-color: #355F5F;
}

.faq-container {
    max-width: 75%;
    margin: 65px auto 20px auto;
    padding-top: 30px;
    border-radius: 10px;
}

.faq-container h1 {
    margin: 1.5rem 0;
    text-align: center;
    color: #fafafa;
    letter-spacing: 3px;
}

.faq-item {
    border-bottom: 1px solid rgb(0 0 0 / .2);
    margin: 10px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: #bec3c5;
    color: rgb(0 0 0 / .8);
    border: none;
    border-radius: 50px;
    outline: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.7rem 2.5rem;
    transition: 0.4s;
}

.faq-question p {
    top: 0;
    padding-top: 0;
}

.faq-question:hover {
    background: #d7eae3;
}

.faq-question i {
    font-size: 1.6rem;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background-color: #6CA64E;
    padding: 0 2rem .5rem 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.faq-answer p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-item.active .faq-answer {
    display: block;
}

/*--------PRIVACY POLICY--------*/
.policy1111 {
    width: 100%;
    height: 100%;
    background-color: #0057AD;
}

#main-polcontent {
    margin-top: 8.5%;
}

.privatext {
    width: 98%;
    height: auto;
    margin: 0 auto;
    padding-top: .1px;
}

.privatext1,
.privatext2 {
    font-weight: 700;
    text-align: center;
}

.privatext1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
    background-color: #333;
    border-radius: 10px;
    padding: 10px 20px;
    transition: background-color 0.5s ease-in-out;
}

h2.privatext2 {
    font-size: 1.8em;
    color: #000;
    margin-bottom: 15px;
    background-color: #e9e3e3;
    border-radius: 8px;
    padding: 8px 16px;
    transition: background-color 0.5s ease-in-out;
}

.privatext1:hover,
.privatext2:hover {
    background-color: #d1c1c1;
}

.privatext2>a {
    text-decoration: none;
    color: #333;
}

@keyframes textAnimation {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.privatext1,
.privatext2 {
    animation: textAnimation 0.5s ease-out forwards;
}

.piva {
    font-size: 1.1em;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #fff;
}

.piva1 {
    font-size: 1.1em;
    line-height: 1;
    margin-bottom: 0;
    color: #fff;
}

.piva a {
    color: #FFF;
}

ul.vatext {
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: 25px;
}

ul.vatext li.priva {
    margin-bottom: 0;
    line-height: 1.3;
    list-style-type: disc;
    color: #fff;
}

ul.vatext li.priva:last-child {
    margin-bottom: 10px;
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #B3003E;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 6px 6px;
    cursor: pointer;
}

#backToTopBtn:hover {
    background-color: olive;
}

@media (max-width:600px) {
    #main-polcontent {
        padding-top: 21%;
    }

    .privatext {
        width: 93%;
        padding-top: 21%;
    }

    .privatext1 {
        margin-top: 8px;
    }
}

@media (min-width:601px) and (max-width:1024px) {
    #main-polcontent {
        padding-top: 8.5%;
    }

    .privatext {
        width: 93%;
        padding-top: 8.5%;
    }

    .privatext1 {
        margin-top: 5px;
    }
}

/*--------CONTACT--------*/
body.contact1111 {
    height: 100%;
    width: 100%;
    background-color: #AACFD4;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.contact-hero-image {
    background-image: linear-gradient(rgb(0 0 0 / .423), rgb(0 0 0 / .407)), url(https://elbiah.com/wp-content/uploads/2025/05/contactimage1.webp);
    width: 100vw;
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.contact-hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
}

.contact-hero-h1 {
    font-size: 50px;
    padding-top: 45px;
}

.lov-contact {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 10px 15px;
    margin-left: 50px;
    margin-right: 40px;
}

.lovtext-align {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 10px 15px;
}

.lovcontainer-contact {
    border-radius: 5px;
    background-color: #e4e0e0;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.lovcontainer-contact {
    flex-shrink: 0;
}

.parag {
    margin: 0;
}

.contlabel,
.column-contact form {
    color: #000;
}

.column-contact form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column-contact label {
    display: block;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 4px;
}

.column-contact input[type=text],
.column-contact input[type=email],
.column-contact select,
.column-contact textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #333;
    color: #f5f5f5;
}

.column-contact textarea {
    min-height: 160px;
}

h1.lov-contact-tith1 {
    display: block;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-top: 48px;
    padding: 10px 15px;
}

h2.lov-contact-tith2 {
    display: block;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    padding: 10px 15px;
}

.row-contact {
    display: flex;
    flex-wrap: wrap;
}

.column-contact {
    flex: 1 1 50%;
    max-width: 50%;
    margin-top: 6px;
    padding: 20px;
    box-sizing: border-box;
}

.row-contact:after {
    content: "";
    display: table;
    clear: both;
}

.column-contact img {
    width: 100%;
}

.column-contact textarea {
    height: 170px;
}

.text1-contact-par {
    padding: 10px 0 20px 0;
    margin-top: 5px;
    text-align: center;
    font-size: 20px;
    color: #000;
}

.text-contact-par {
    padding: 10px 15px;
    margin-top: 5px;
    font-size: 20px;
    color: #000;
}

.emailus-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.emailusp-contact {
    color: #000;
    margin: 0;
}

.emailusb-contact {
    display: inline-block;
    padding: 5px 10px;
    font-size: smaller;
    font-weight: 700;
    background-color: #24349c;
    color: #fff;
    border: none;
    cursor: pointer;
}

.emailusb-contact:hover {
    background-color: #02603e;
    font-weight: 700;
    color: #fff;
}

@media (max-width:600px) {
    .column-contact {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        padding: 10px 0;
    }

    input.input-lovcontact {
        width: 100%;
        margin-top: 8px;
    }

    .text-contact-par {
        font-size: 16px;
    }

    h1.lov-contact-tith1 {
        font-size: 24px;
    }

    h2.lov-contact-tith2 {
        font-size: 22px;
    }

    .contact-hero-text h1 {
        font-size: 35px;
    }

    .lov-contact {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (min-width:601px) and (max-width:1024px) {
    .column-contact {
        flex: 1 1 50%;
        max-width: 50%;
        width: 50%;
    }

    input.input-lovcontact {
        width: 50%;
        margin-top: 8px;
    }
}

/*--------SERVICE DETAILS PAGE--------*/
.deta-serv1111 {
    color: #333;
    background-color: #938377;
    overflow-x: hidden;
    padding-top: 110px;
}

.heado-serv {
    background-color: #edc0c0;
    text-align: center;
    margin-top: 0;
    padding: 1em 0;
    margin-left: 20px;
    margin-right: 20px;
}

.detali-service {
    font-size: clamp(1.8rem, 5vw, 2.5em);
    color: #222;
}

.deta-services-container {
    max-width: 1245px;
    margin: 2em auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    box-sizing: border-box;
}

.deta-service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    margin-bottom: 2em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deta-service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.deta-service-content {
    padding: 2em;
}

.deta-service-content h2 {
    margin-top: 0;
    font-size: 2em;
    color: #555;
    text-align: center;
}

.deta-service-content p {
    margin-bottom: 1.5em;
}

.deta-para {
    margin-top: auto;
    padding: 1em 2em;
}

.deta-parap .plorexa {
    background-color: aqua;
    color: red;
    font-weight: bolder;
    text-decoration: none;
    border-radius: 6px;
    padding: 0 .4em;
    display: inline-block;
}

.deta-parap .plorexa:hover {
    background-color: #6CA64E;
    text-decoration: underline 1px solid #432763;
    color: #fff;
    animation-name: bounce;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    transform: scaleX(1.2);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.deta-service-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0 0 0 / .5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1;
}

.play-button.playing {
    display: none !important;
}

@media (max-width:576px) {
    .deta-serv1111 {
        padding-top: 110px;
    }

    .deta-services-container {
        grid-template-columns: 1fr;
        gap: 1.5em;
        padding: 0 12px;
    }

    .deta-service-image,
    .deta-service-image-container {
        height: 240px;
    }
}

@media (min-width:577px) and (max-width:768px) {
    .deta-serv1111 {
        padding-top: 110px;
    }

    .deta-services-container {
        gap: 1.5em;
        padding: 0 12px;
    }
}

@media (min-width:769px) and (max-width:992px) {
    .deta-serv1111 {
        padding-top: 110px;
    }
}

/*--------SERVICE PICTURES PAGE--------*/
body.servpic1111 {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    background-color: #272626;
    display: flex;
    flex-direction: column;
    padding-top: 110px;
}

.servpic-page-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sticky footer for services-in-pictures page */
body.servpic1111 .build-footer {
    margin-top: auto;
}

.servpic-h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    color: #fff;
}

.servpic-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    color: #fff;
}

.servpic-sidebar {
    width: 180px;
    padding: 10px;
    color: #fff;
}

.servpic-sidebar ul {
    list-style-type: square;
    padding: 0 0 0 20px;
}

.servpic-sidebar li {
    cursor: pointer;
    padding: 5px 0;
}

.servpic-sidebar li::before {
    color: #333;
}

.servpic-main {
    flex: 1;
    padding: 20px;
}

.servpic-gallery-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.servpic-separator {
    width: 90%;
    max-width: 1200px;
    border: 0;
    border-top: 1px solid #666;
    margin: 10px auto 25px auto;
}

.servpic-slider {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    /* Fix the slider height so the footer doesn't jump
       when images have different aspect ratios. */
    height: 60vh;
    max-height: 600px;
}

/* Footer will naturally sit at bottom because servpic-page-main flexes */

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    display: block;
}

.servpic_arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgb(0 0 0 / .5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.servpic_arrow.left {
    left: 0;
}

.servpic_arrow.right {
    right: 0;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 8%;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.chear-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto;
    min-width: 200px;
    text-align: center;
}

.chear-button:hover {
    background-color: #444;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width:576px) {
    .servpic-h1 {
        font-size: 1.8em;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .servpic-sidebar ul {
        font-size: .9em;
    }

    .servpic-gallery-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .servpic_arrow {
        font-size: 20px;
        padding: 8px;
    }
}

@media (max-width:767px) {
    .servpic-container {
        flex-direction: column;
        width: 95%;
    }

    .servpic-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
        margin-bottom: 15px;
        padding: 10px;
    }

    .servpic-sidebar ul {
        display: flex;
        list-style-type: none;
        padding: 0;
        overflow-x: auto;
    }

    .servpic-sidebar li {
        padding: 5px 10px;
        border-right: 1px solid #eee;
    }

    .servpic-sidebar li:last-child {
        border-right: none;
    }

    .servpic-main {
        padding: 15px;
    }

    .servpic-slider {
        width: 100%;
    }

    .servpic_arrow {
        font-size: 24px;
    }

    .servpic-h1 {
        margin-top: 15px;
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .chear-button {
        width: 80%;
        max-width: 320px;
        margin-bottom: 15px;
    }

    .chear-button:last-child {
        margin-bottom: 0;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .servpic-container {
        flex-direction: row;
        width: 95%;
    }

    .servpic-sidebar {
        width: 180px;
        padding: 10px;
    }

    .servpic-main {
        padding: 15px;
    }

    .servpic-slider {
        width: 90%;
    }

    .servpic-h1 {
        margin-top: 15px;
    }
}

/*--------APPOINTMENT PAGE--------*/
.photo-appt1111 {
    background-color: #355F5F;
    padding-top: 110px;
}

#main-photo-appt {
    margin-top: 20px;
    margin-bottom: 40px;
}

.photo-appt-hero {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.photo-appt-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 15px;
}

.photo-appt-section {
    display: flex;
    justify-content: center;
    padding: 0 15px 40px 15px;
}

.photo-appt-card {
    width: 100%;
    max-width: 1100px;
    background-color: #004545;
    border-radius: 8px;
    padding: 30px 25px 35px 25px;
    box-shadow: 0 4px 20px rgb(0 0 0 / .35);
}

.photo-appt-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.appt-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.appt-field {
    flex: 1 1 0;
    min-width: 230px;
}

.appt-field-full {
    flex-basis: 100%;
    min-width: 100%;
}

.photo-appt-form label,
.appt-time-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #f4f4f4;
}

.photo-appt-form input[type="text"],
.photo-appt-form input[type="email"],
.photo-appt-form input[type="tel"],
.photo-appt-form input[type="date"],
.photo-appt-form select,
.photo-appt-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #1cc0a0;
    background-color: #111;
    color: #f8f8f8;
}

.photo-appt-form textarea {
    min-height: 170px;
    resize: vertical;
}

.photo-appt-form input::placeholder,
.photo-appt-form textarea::placeholder {
    color: #b9b9b9;
}

.appt-time-group {
    display: flex;
    flex-direction: column;
}

.appt-time-row {
    display: flex;
    gap: .8rem;
}

.appt-time-field {
    flex: 1 1 0;
}

.appt-time-field label {
    color: #f4f4f4;
}

.appt-consent-row {
    margin-top: .5rem;
}

.appt-consent {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #f4f4f4;
}

.appt-consent input[type="checkbox"] {
    margin-top: 4px;
}

.appt-submit-row {
    justify-content: flex-start;
}

.appt-submit {
    padding: 10px 26px;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    background-color: #1cc0a0;
    color: #fff;
    cursor: pointer;
    transition: background-color .2s ease, transform .1s ease;
}

.appt-submit:hover {
    background-color: #17a384;
    transform: translateY(-1px);
}

@media (max-width:600px) {
    .photo-appt-card {
        padding: 20px 15px 25px 15px;
    }

    .appt-time-row {
        flex-direction: column;
    }
}

