* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    font-family: Montserrat;
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
}

:root {
    --primary-color: #009AF8;
    --secondary-color: #00B0B7;
    --dark-color: #003A8A;
    --black-color: #262626;
}

body {
    overflow-x: hidden;
    /* overflow-y: hidden; */
    background-color: #000;
    color: #fff;

    .montserrat {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* REMOVE INPUT NUMBER ARROWS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* REMOVE ICONE RECAPTCHA */
.grecaptcha-badge {
    display: none !important;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* REMOVE INPUT NUMBER ARROWS */

/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #262626;
    border-radius: 6px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #004AAD;
    border-radius: 16px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #003b88;
}


.container {
    width: 100vw;
    min-height: 100vh;
    /* Mínimo de 100vh, mas permite expansão */
}

section {
    height: 100vh;
    /* Garante que cada section ocupe exatamente a altura da viewport */
}

.full-width {
    width: 100% !important;
}

.services-list.full-width {
    margin: auto 1vw auto 0 !important;
    /* flex-direction: row !important;
    justify-content: center;
    column-gap: 1.75vw !important; */
}

.rtl .services-list.full-width {
    margin: auto 1.125vw auto 0 !important;
    /* flex-direction: row !important;
    justify-content: center;
    column-gap: 1.75vw !important; */
}

/* .addicional-services.full-width .addicional-service-list {
    margin: auto 1vw auto 0 !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    column-gap: 1.75vw !important;
}

.rtl .addicional-services.full-width .addicional-service-list {
    margin: auto 1.125vw auto 0 !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    column-gap: 1.75vw !important;
} */

.dot-icon {
    width: 0.65rem;
    height: 0.65rem;
    background-color: #ffffff;
    border-radius: 50%;
}

.main-section {
    display: flex;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
}

.main-section-content {
    z-index: 5;
    width: 50%;
    margin: 10vh 0 0 5vh;

    .main-title {
        display: flex;
        align-items: center;
        gap: 1vw;
        /* text-align: center; */

        h1 {
            font-size: 5vw;
            font-weight: 900;
            color: var(--primary-color);
            line-height: 0.9;
        }

        .logo-icon {
            height: 3rem;
        }
    }

    .excerpt {
        font-size: 3.5vw;
        font-weight: 500;
    }

    .text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cards {
        display: flex;
        flex-direction: column;
        gap: 2vh;
        margin-top: 2vh;
        text-align: center;

        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25vw 3vw;
            border: solid #fff 1px;
            border-radius: 1vw;
            width: 30vw;
            background: linear-gradient(90deg, rgb(0 0 0), rgb(255 255 255 / 20%) 100%);

            h3 {
                font-size: 1.5vw;
                color: var(--primary-color);
                font-weight: 700;
            }

            p {
                margin: 0.375vh 0;
                font-size: 1.175vw;
            }

            a {
                font-size: 1.175vw;
            }

            .cta-button {
                padding: 0.75vw;
                background-color: var(--primary-color);
                color: #fff;
                border-radius: 3vw;
                margin: 0.75vw auto auto auto;
                font-size: 1.175vw;
            }
        }
    }
}

.main-section-content::before {
    content: '';
    position: absolute;
    display: block;
    width: 50vw;
    left: 0;
    margin-top: -5.5vh;
    height: 4vh;
    background: linear-gradient(45deg, #00B0B7, #003A8A);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.section-images {
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 37vw;
        max-height: 85vh;
        object-fit: cover;
        margin: auto 15vw auto auto;
        clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);

    }

    .img-front {
        position: absolute;
        z-index: 6;
        width: 28vw;
        max-height: 48vh;
        right: 10vw;
        bottom: 4vh;
        margin: auto;
    }

    .flag-icon {
        width: 7vw;
        max-height: none;
        margin: auto;
        top: 34vh;
        right: 2vw;
        clip-path: none;
        position: absolute;
        z-index: 7;
    }
}

.section-images::before {
    content: '';
    position: absolute;
    display: block;
    width: 17vw;
    right: 9vw;
    z-index: 8;
    top: 6vh;
    height: 4vh;
    background: linear-gradient(45deg, #00B0B7, #003A8A);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.section-images::after {
    content: '';
    position: absolute;
    display: block;
    width: 17vw;
    right: 39vw;
    z-index: 8;
    bottom: 6vh;
    height: 4vh;
    background: linear-gradient(45deg, #00B0B7, #003A8A);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.left-content {
    position: absolute;
    width: 40%;
}

.image-tag {
    position: absolute;
    height: 9.5vw;
    object-fit: cover;
    z-index: 5;
    top: 27vh;
    left: 32.5vw;
    background: linear-gradient(0deg, #009DF9 0%, #004AAD 100%);
    width: 5.5vw;
    clip-path: polygon(50% 0, 100% 0, 50% 100%, 0% 100%);

}

.title {
    position: absolute;
    display: flex;
    gap: 12px;
    z-index: 5;
    padding: 1vw 0.5vw;
    width: 25vw;
    margin-top: 4.75vw;
    font-size: 1.2vw;
    background: #009AF8;
    background: linear-gradient(90deg, rgba(0, 154, 248, 1) 0%, rgba(1, 73, 172, 1) 100%);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.logo-icon {
    height: 2.2vw;
    object-fit: cover;
}

.section-image {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 68% 100%, 0% 100%);
    position: absolute;

}

.right-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.service-title {
    padding: 3.5vw 0 0 40%;
    font-size: 2.5vw;
}

.infos {
    width: 100%;
    height: 38vh;
    text-align: right;
    overflow-y: auto;
}

.service-options {
    display: flex;
    padding: 1% 7% 0 40%;
    justify-content: space-between;


    .option {
        display: grid;
        align-items: center;
        padding: 0.5vw 1.125vw;
        border: #C7C7C7 2px solid;
        border-radius: 0.85vw;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0% 0%, transparent);

        h4 {
            font-size: 1.75vw;
            font-weight: 900;
            color: #009AF8;
            text-align: center;
        }

        p {
            font-size: 1vw;
            font-weight: 400;
        }
    }

    .price {
        h4 {
            font-size: 1.75vw;
            font-weight: 900;
            color: #009AF8;
            text-align: center;
            align-items: center;
            display: flex;
            gap: 6px;

            img {
                width: 1.5vw;
            }
        }

        .price-value {
            font-size: 1.75vw;
            font-weight: 400;
            color: #fff;
            text-align: center;
        }
    }

    .time-spend {
        h4 {
            font-size: 1.75vw;
            font-weight: 900;
            color: #009AF8;
            text-align: center;
            align-items: center;
            display: flex;
            gap: 6px;

            img {
                width: 1.5vw;
            }
        }

        .time-value {
            font-size: 1.25vw;
            font-weight: 400;
            color: #fff;
            text-align: center;
        }
    }

}

.flag-icon {
    height: 6vw;
    object-fit: cover;
    /* margin: auto -1.7vw auto auto; */
    position: absolute;
    right: -2vw;

}

.section-content {
    width: 93vw;
    background: linear-gradient(90deg, #009DF9 0%, #004AAD 100%);
    margin: auto auto 8vh 0;
    height: 35vh;
    padding: 1.5vw 0 1.5vw 34vw;
    display: flex;

    .logo-icon {
        position: absolute;
        right: 5vw;
        margin-top: -6.5vh;
    }

    .services-list {
        height: 100%;
        width: 60%;
        padding: 1rem 2.5vw;
        margin: auto 0 auto 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow-y: auto;
        /* flex-wrap: wrap; */
    }

    .service-item {
        display: flex;
        gap: 1vw;
        align-items: center;

        img {
            width: 3vw;
        }

        h3 {
            font-weight: 400;
            font-size: 1.125vw;
        }

    }

    .addicional-services {
        padding: 1rem 1.5vw;
        width: 40%;

        h3 {
            text-shadow: 2px 2px 10px #000;
            font-size: 1.25vw;
        }

        .addicional-service-list {
            display: flex;
            flex-direction: column;
            gap: 0.5vw;
            margin-top: 2vh;
            overflow-y: auto;
            height: 100%;
        }

        .addicional-service-item {
            display: flex;
            align-items: center;
            gap: 0.75vw;

            h4 {
                font-size: 1.125vw;
                font-weight: 400;
            }

            img {
                width: 3vw;
                background-color: black;
                border-radius: 50%;
                padding: 0.425rem;
            }

            p {
                font-size: 1.125vw;
                font-weight: 800;
                color: #000;
            }
        }
    }

}

/* RTL (Right-to-Left) versions - espelhadas */

section.rtl {
    .left-content {
        position: absolute;
        width: 40%;
        right: 0;
    }

    .right-content {
        position: absolute;
        width: 100%;
        left: 0;
    }

    .image-tag {
        position: absolute;
        height: 9.5vw;
        object-fit: cover;
        z-index: 5;
        top: 27vh;
        left: 2vw;
        background: linear-gradient(180deg, #009DF9 0%, #004AAD 100%);
        width: 5.5vw;
        clip-path: polygon(50% 0, 0 0, 50% 100%, 100% 100%);
    }

    .title {
        position: absolute;
        flex-direction: row-reverse;
        right: 0;
        text-align: right;
        z-index: 5;
        padding: 1vw 0.5vw;
        width: 25vw;
        margin-top: 4.75vw;
        font-size: 1.2vw;
        background: #009AF8;
        background: linear-gradient(-90deg, rgba(0, 154, 248, 1) 0%, rgba(1, 73, 172, 1) 100%);
        color: #fff;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    }

    .section-image {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        object-fit: cover;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 32% 100%);
        position: absolute;
        z-index: 4;
    }

    .service-title {
        padding: 3.5vw 0 0 5%;
        max-width: 60%;
    }

    .infos {
        width: 100%;
        height: 38vh;
        text-align: left;
        overflow-y: auto;
    }

    .section-cta-buttons {
        margin: auto auto auto 21vw;
    }

    .service-options {
        display: flex;
        padding: 1% 40% 0 7%;
        justify-content: space-between;
        /* flex-direction: row-reverse; */

        .option {
            padding: 0.5vw 1.125vw;
            border: #C7C7C7 2px solid;
            border-radius: 0.85vw;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0% 0%, transparent);

            h4 {
                font-size: 1.75vw;
                font-weight: 900;
                color: #009AF8;
                text-align: center;
            }

            p {
                font-size: 1vw;
                font-weight: 400;
            }
        }

        .price {
            h4 {
                font-size: 1.75vw;
                font-weight: 900;
                color: #009AF8;
                text-align: center;
                align-items: center;
                display: flex;
                gap: 6px;

                img {
                    width: 1.5vw;
                }
            }

            .price-value {
                font-size: 1.75vw;
                font-weight: 400;
                color: #fff;
                text-align: center;
            }
        }

        .time-spend {
            h4 {
                font-size: 1.75vw;
                font-weight: 900;
                color: #009AF8;
                text-align: center;
                align-items: center;
                display: flex;
                gap: 6px;

                img {
                    width: 1.5vw;
                }
            }

            .time-value {
                font-size: 1.25vw;
                font-weight: 400;
                color: #fff;
                text-align: center;
            }
        }
    }

    .flag-icon {
        height: 6vw;
        object-fit: cover;
        position: absolute;
        left: -2vw;
        /* Espelhado de right: -2vw */
    }

    .section-content {
        width: 93vw;
        background: linear-gradient(-90deg, #009DF9 0%, #004AAD 100%);
        /* Espelhado */
        margin: auto 0 8vh auto;
        height: 35vh;
        padding: 1.5vw 33vw 1.5vw 0;
        /* Espelhado */
        display: flex;

        .logo-icon {
            position: absolute;
            left: 5vw;
            /* Espelhado */
            margin-top: -6.5vh;
        }

        .services-list {
            height: 100%;
            width: 60%;
            padding: 1rem 2.5vw;
            margin: auto 0 auto 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            overflow-y: auto;
        }

        .service-item {
            display: flex;
            gap: 1vw;
            align-items: center;

            img {
                width: 3vw;
            }

            h3 {
                font-weight: 400;
                font-size: 1.125vw;
                text-align: left;
                /* Espelhado */
            }
        }

        .addicional-services {
            padding: 1rem 1.5vw;
            width: 40%;

            h3 {
                text-shadow: 2px 2px 10px #000;
                font-size: 1.25vw;
            }

            .addicional-service-list {
                display: flex;
                flex-direction: column;
                gap: 0.5vw;
                margin-top: 2vh;
                overflow-y: auto;
                height: 100%;
            }

            .addicional-service-item {
                display: flex;
                align-items: center;
                gap: 0.75vw;

                h4 {
                    font-size: 1.125vw;
                    font-weight: 400;
                    text-align: right;
                    /* Espelhado */
                }

                img {
                    width: 3vw;
                    background-color: black;
                    border-radius: 50%;
                    padding: 2%;
                }

                p {
                    font-size: 1.125vw;
                    font-weight: 800;
                    color: #000;
                }
            }
        }
    }
}

/* HEADER STYLES */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1vw;
    z-index: 2;
}

.logo .logo-icon {
    height: 3vw;
    min-height: 35px;
    max-height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5vw;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2vw;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5vw 1vw;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.mobile-social-section {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 2;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .logo .logo-icon {
        height: 8vw;
        min-height: 30px;
        max-height: 35px;
    }

    .logo-text {
        font-size: 4vw;
        font-weight: 800;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 5rem 0 1.5rem 0;
        justify-content: space-between;
        z-index: 50;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.525rem;
        text-align: center;
    }

    .nav-link {
        font-size: 5vw;
        font-weight: 700;
        padding: 0.125rem 1rem;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 51;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-nav.active {
        right: 0;
    }

    .mobile-social-section {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }

    .mobile-social-section h4 {
        color: var(--primary-color);
        font-size: 4vw;
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-social-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .mobile-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 3.5vw;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 200px;
    }

    .mobile-social-link:hover {
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
    }

    .mobile-social-link i {
        font-size: 4vw;
        min-width: 20px;
        text-align: center;
    }

    .mobile-social-section {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 4vw;
    }

    .nav-link {
        font-size: 1rem;
    }
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    height: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* CONTACT FORM */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;

    option {
        color: #000;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 154, 248, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 154, 248, 0.3);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 154, 248, 0.4);
}

.contact-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* FORM MESSAGES */
.form-message {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.message-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content span {
    flex: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT MAP */
.contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-header {
    text-align: center;
}

.map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 154, 248, 0.2);
}

.contact-link:hover .info-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 154, 248, 0.3);
}

.contact-link:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-link:hover .info-item strong,
.contact-link:hover .info-item p {
    color: #fff;
}

/* RESPONSIVE CONTACT SECTION */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
        margin: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
        order: 2;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .contact-map-container {
        order: 1;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .info-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    .contact-submit-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .map-wrapper iframe {
        height: 200px;
    }

    .info-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }

    .info-item i {
        font-size: 1.1rem;
    }
}

/* ADJUST MAIN CONTENT TO ACCOUNT FOR FIXED HEADER */
.container {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .container {
        margin-top: 60px;
    }
}

/* FOOTER STYLES */
.main-footer {
    background: linear-gradient(135deg, var(--black-color) 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3vw 2vw;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3vw;
    margin-bottom: 3vw;
}

.footer-section {
    padding: 1vw 0;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.25vw;
    font-weight: 700;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 1.5vw;
}

.footer-logo-icon {
    height: 4vw;
    min-height: 40px;
    max-height: 50px;
    margin-bottom: 0.5vw;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.75vw;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0.5vw 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo p {
    font-size: 1.25vw;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.footer-description {
    font-size: 1vw;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75vw;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1vw;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75vw;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1vw;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-link i {
    width: 1.5vw;
    text-align: center;
    font-size: 1.2vw;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75vw;
}

.contact-icon {
    width: 2vw;
    height: 2vw;
    min-width: 20px;
    min-height: 20px;
    max-width: 25px;
    max-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    font-size: 1.2em;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95vw;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75vw;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span {
    font-size: 0.95vw;
    font-weight: 500;
}

.hours-item span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.hours-item span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-item.closed span:last-child {
    color: #ff6b6b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    position: relative;
}

.footer-decoration {
    flex: 1;
    display: flex;
    justify-content: center;
}

.decoration-line {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9vw;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        padding: 8vw 4vw 4vw;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 6vw;
        margin-bottom: 6vw;
    }

    .footer-section {
        text-align: center;
        padding: 2vw 0;
    }

    .footer-section h4 {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .footer-logo-icon {
        height: 10vw;
        min-height: 35px;
        max-height: 45px;
    }

    .footer-logo h3 {
        font-size: 5vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-description {
        font-size: 3vw;
    }

    .footer-links a {
        font-size: 3.5vw;
    }

    .footer-social {
        gap: 1rem;
    }

    .social-link {
        font-size: 3.5vw;
        gap: 0.75rem;
    }

    .social-link i {
        width: 5vw;
        font-size: 4vw;
        min-width: 18px;
    }

    .footer-contact,
    .footer-social {
        align-items: center;
    }

    .contact-icon {
        width: 5vw;
        height: 5vw;
        min-width: 18px;
        min-height: 18px;
        max-width: 22px;
        max-height: 22px;
        font-size: 1em;
    }

    .contact-item a,
    .contact-item span {
        font-size: 3vw;
    }

    .hours-item span {
        font-size: 3vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4vw;
        padding-top: 4vw;
    }

    .decoration-line {
        max-width: 150px;
    }

    .footer-bottom p {
        font-size: 2.5vw;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 10vw 5vw 5vw;
    }

    .footer-content {
        gap: 8vw;
    }

    .footer-logo h3 {
        font-size: 6vw;
    }

    .footer-description {
        font-size: 3.5vw;
    }

    .contact-item a,
    .contact-item span {
        font-size: 3.5vw;
    }

    .hours-item span {
        font-size: 3.5vw;
    }

    .footer-bottom p {
        font-size: 3vw;
    }
}

/* SECTION CTA BUTTONS */
.section-cta {
    margin: 2rem 0;
    padding: 0 1rem;
}

.section-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: auto auto auto 54vw;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.section-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.4s ease;
}

.section-btn:hover::before {
    left: 100%;
}

.section-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: #fff;
}

.section-btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 154, 248, 0.3);
}

.section-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    border-color: #25d366;
    color: #fff;
}

.section-btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #128c42);
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.section-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.section-btn:hover i {
    transform: scale(1.1);
}

/* RESPONSIVE SECTION CTA */
@media (max-width: 768px) {
    .section-cta {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .section-cta-buttons {
        gap: 0.75rem;
        margin: auto;
    }

    .section-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 0.4rem;
    }

    .section-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-cta {
        margin: 1rem 0;
    }

    .section-cta-buttons {
        align-items: stretch;
    }

    .section-btn {
        justify-content: center;
        padding: 0.8rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* HERO SECTION - CALL TO ACTION BUTTONS */
.main-section .main-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem !important;
    width: 100%;
}

.main-section .business-hours-text {
    background: linear-gradient(90deg, rgba(0, 154, 248, 0.1), rgba(0, 176, 183, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-section .cta-buttons-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.main-section .btn,
.main-header .btn {
    flex: 1;
    max-width: 280px;
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-section .btn,
.main-header .btn {
    max-width: 170px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.main-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.main-section .btn:hover::before {
    left: 100%;
}

.main-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: #fff;
}

.main-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    border-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 154, 248, 0.4);
}

.main-section .btn-whatsapp,
.main-header .btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    border-color: #25d366;
    color: #fff;
}

.main-section .btn-whatsapp:hover,
.main-header .btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851, #128c42);
    border-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.main-section .btn i,
.main-header .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.main-section .btn:hover i,
.main-header .btn:hover i {
    transform: scale(1.1);
}

/* GOOGLE REVIEWS CARD */
.taktow-rating-card {
    /* margin: 15px 0 !important; */
    max-width: none !important;
    box-shadow: none !important;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin: 15px auto;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    max-width: 370px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.taktow-reviews-modal.show {
    padding: 80px 10px 10px 10px;
}

.taktow-rating-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.taktow-rating-card .taktow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taktow-rating-card .taktow-logo,
.taktow-rating-card .rating-card-logo {
    height: 24px;
    width: auto;
}

.taktow-rating-card .taktow-reviews-count {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
}

.taktow-rating-card .taktow-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.taktow-rating-card .taktow-stars .gr-stars {
    font-size: 24px;
    color: #00b67a;
    display: inline-flex;
}

.taktow-rating-card .taktow-stars .gr-stars i {
    color: #f5a623;
}

.taktow-rating-card .taktow-rating-number {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-left: 8px;
}

/* RESPONSIVE FOR HERO ACTIONS */
@media (max-width: 768px) {
    .main-section .main-actions {
        gap: 1rem;
        margin-top: 1.5rem !important;
        padding: 0 5px;
    }

    .main-section .business-hours-text {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .main-section .cta-buttons-container {
        gap: 0.75rem;
    }

    .main-section .btn {
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .taktow-rating-card {
        max-width: 100% !important;
        margin: 15px 5px !important;
    }
}

@media (max-width: 480px) {
    .main-section .business-hours-text {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .main-section .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 0.6rem;
    }

    .main-section .btn i {
        font-size: 1.1rem;
    }

    .taktow-rating-card {
        padding: 12px;
    }

    .taktow-rating-card .taktow-reviews-count {
        font-size: 16px;
    }

    .taktow-rating-card .taktow-stars .gr-stars {
        font-size: 20px;
    }

    .taktow-rating-card .taktow-rating-number {
        font-size: 16px;
    }
}

/*MOBILE */

@media (max-width: 768px) {

    .container {
        width: 100%;
    }

    .main-section {
        flex-direction: column;
        height: auto;
    }

    .main-section::before {
        height: 160%;
    }

    section {
        /* padding: 0 1rem; */
    }

    .main-section-content {
        width: 100%;
        margin: 10vh auto 0 auto;

        .main-title {
            justify-content: center;

            h1 {
                font-size: 3rem;
            }

            .logo-icon {
                height: 2.3rem;
            }
        }

        .excerpt {
            font-size: 1.75rem;
        }
    }

    .main-section-content::before {
        height: 3vh;
        width: 90%;
    }

    .section-images::before {
        display: none;
    }

    .section-images::after {
        display: none;
    }

    .section-images {
        margin-bottom: 5rem;

        img {
            width: 95%;
            height: auto;
            margin: 2rem auto auto auto;
            clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
        }

        .img-front {
            width: 50%;
            height: auto;
            right: 1rem;
            margin: 20rem auto 0 auto;
            bottom: unset;
        }

    }

    section,
    section.rtl {
        height: auto;
        overflow: hidden;
        margin-top: 2rem;

        .flag-icon {
            margin-top: -0.5rem;
        }

        .left-content {
            width: 100%;
            height: auto;
            position: relative;

            .section-image {
                width: 100%;
                height: auto;
                max-height: unset;
                clip-path: unset;
            }

            .image-tag {
                display: none;
            }
        }

        .right-content {
            position: relative;
            z-index: 5;
            height: auto;

            .service-title {
                padding: 2rem 0 1rem 0;
                font-size: 1rem;
                text-align: center;
                max-width: 100%;
                text-shadow: 3px 3px 4px rgba(0, 0, 0, 1);
            }

            .infos {
                width: 100%;
                height: auto;
                text-align: center;
                background: rgba(0, 0, 0, 0.75)
            }

            .service-options {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                padding: 0.75rem;
                justify-content: center;
                align-items: center;

                .option {
                    padding: 0.5rem 0.5rem;
                    border-radius: 0.5rem;

                    h4 {
                        font-size: 1rem;
                    }

                    p {
                        font-size: 0.5rem;
                    }
                }

                .price {
                    h4 {
                        font-size: 1rem;
                    }

                    img {
                        width: 1rem;
                    }

                    .price-value {
                        font-size: 1.125rem;
                    }
                }

                .time-spend {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    h4 {
                        font-size: 1rem;
                    }

                    img {
                        width: 1rem;
                    }

                    .time-value {
                        font-size: 1.125rem;
                    }
                }
            }

            .section-cta {
                .section-cta-buttons {
                    margin: auto;
                    justify-content: center;
                }
            }

            .section-content {
                width: 100%;
                margin: 2rem auto;
                height: auto;
                padding: 1rem 0.5rem;
                flex-direction: column;

                .services-list {
                    height: 100%;
                    padding: 1rem 0.5rem;
                    gap: 0.5rem;
                    width: 100%;
                    flex-wrap: wrap;
                    align-content: center;


                    .service-item {
                        gap: 0.5rem;
                        /* justify-content: center; */

                        img {
                            width: 1rem;
                        }

                        h3 {
                            font-size: 0.7rem;
                        }
                    }
                }

                .addicional-services {
                    padding: 1rem 0.5rem;
                    width: 100%;

                    h3 {
                        text-align: center;
                        font-size: 0.75rem;
                    }

                    .addicional-service-list {
                        gap: 0.5rem;
                        margin-top: 1rem;
                        align-content: center;
                        flex-wrap: wrap;
                    }

                    .addicional-service-item {
                        gap: 0.5rem;
                        /* justify-content: center; */

                        img {
                            width: 1.5rem;
                            padding: 1%;
                        }

                        h4 {
                            font-size: 0.7rem;
                        }

                        p {
                            font-size: 0.75rem;
                        }
                    }
                }
            }
        }

        .left-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.90);
        }
    }
}