
/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
}



/* ================================
   HEADER
================================ */

.header {
    width: 100%;
    height: 70px;
    padding: 8px 6%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;
    border-bottom: 1px solid #eeeeee;

    position: relative;
}


/* ================================
   HEADER LOGO
================================ */

.header-logo {
    width: 300px;
    height: 300px;

    object-fit: contain;
    display: block;

    flex-shrink: 0;
}


/* ================================
   MENU BUTTON
================================ */
.menu-btn {
    width: 44px;
    height: 44px;

    position: absolute;
    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 10px;

    background: #f5f5f5;
    color: #111111;

    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 600px) {

    .menu-btn {
        width: 40px;
        height: 40px;

        left: 18px;
        top: 50%;

        font-size: 21px;
    }
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 600px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 20px;
}


/* ================================
   PROFILE IMAGE
================================ */
.profile-circle {
    width: 150px;
    height: 150px;

    border-radius: 50%;
    padding: 5px;

    background: linear-gradient(
        #27D268,
    );

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    margin-bottom: 25px;
}

.profile-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 50%;
}


/* ================================
   HERO TITLE
================================ */

.hero h1 {
    font-size: 42px;
    font-weight: 800;

    margin-bottom: 12px;

    line-height: 1.2;
}

.subtitle {
    max-width: 600px;

    font-size: 18px;
    color: #666666;

    line-height: 1.6;
    font-weight: 700;

    margin-bottom: 28px;
}


/* ================================
   WHATSAPP BUTTON
================================ */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    background: #138C7F;
    color: #ffffff;

    text-decoration: none;

    border-radius: 30px;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.25);

    /* FLOATING */
    animation: floating 1.5s ease-in-out infinite;
}


/* ================================
   FLOAT ANIMATION
================================ */

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .whatsapp-btn {
        width: 100%;
        max-width: 300px;

        padding: 14px 20px;

        font-size: 15px;

        animation: floating 1.5s ease-in-out infinite;
    }

}



/* ================================
   FOOTER
================================ */

.footer {
    width: 100%;

    background: #111111;
    color: #ffffff;

    padding: 65px 6% 25px;
}

.footer-content {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        1fr;

    gap: 50px;

    text-align: left;
}


/* ================================
   FOOTER COLUMNS
================================ */

.footer-column {
    min-width: 0;
    width: 100%;

    text-align: left;
}

.footer-column h4 {
    font-size: 17px;
    font-weight: 800;

    margin-bottom: 22px;

    color: #ffffff;

    text-align: left;
}

.footer-column ul {
    list-style: none;
    text-align: left;
}

.footer-column li {
    margin-bottom: 13px;
    text-align: left;
}


/* ================================
   FOOTER LINKS
================================ */

.footer-column a {
    color: #cfcfcf;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: color 0.2s ease;

    text-align: left;
}

.footer-column a:hover {
    color: #25D366;
}


/* ================================
   LANGUAGE
================================ */

.language-box {
    margin-top: 30px;
}

.language-box label {
    display: block;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 8px;

    color: #ffffff;
}

.language-box select {
    width: 100%;
    max-width: 180px;

    padding: 10px 12px;

    border: 1px solid #444444;
    border-radius: 8px;

    background: #222222;
    color: #ffffff;

    font-size: 14px;

    outline: none;
    cursor: pointer;
}


/* ================================
   COPYRIGHT
================================ */

.copyright {
    width: 100%;
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 22px;

    border-top: 1px solid #333333;

    text-align: center;

    color: #999999;

    font-size: 13px;
    line-height: 1.6;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .header {
        padding: 12px 4%;
    }

    .hero {
        min-height: 550px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .footer {
        padding: 55px 5% 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .header {
        width: 100%;
        min-height: 64px;

        padding: 10px 18px;
    }

    /* MOBILE HEADER IMAGE */
    .header img {
        width: 40px;
        height: 40px;
    }

    .header-left {
        gap: 9px;
    }

    .logo {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .header h2 {
        font-size: 19px;
    }

    


    /* HERO */

    .hero {
        min-height: 500px;

        padding: 55px 18px;
    }

    .profile-circle {
        width: 125px;
        height: 125px;

        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: 32px;

        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 16px;

        max-width: 320px;

        margin-bottom: 25px;
    }

    


    /* FOOTER */

    .footer {
        padding: 45px 22px 22px;
    }

    .footer-content {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

    .footer-column {
        width: 100%;

        text-align: center;
    }

    .footer-column h4 {
        font-size: 17px;

        margin-bottom: 16px;

        text-align: center;
    }

    .footer-column ul,
    .footer-column li {
        text-align: center;
    }

    .footer-column li {
        margin-bottom: 11px;
    }

    .footer-column a {
        display: block;

        font-size: 15px;
        font-weight: 600;

        text-align: center;
    }

    .language-box {
        margin-top: 5px;
        text-align: center;
    }

    .language-box select {
        max-width: 100%;
    }

    .copyright {
        width: 100%;

        margin: 50px auto 0;
        padding-top: 22px;

        text-align: center;
    }
}


/* ================================
   VERY SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .header h2 {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .profile-circle {
        width: 110px;
        height: 110px;
    }

    .footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 600px) {

    .header {
        width: 100%;
        height: 60px;

        padding: 6px 18px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* MOBILE LOGO */

    .header-logo {
        width: 300px;
        height: 300px;

        object-fit: contain;
        display: block;
    }
    @media (max-width: 600px) {

    .header-logo {
        width: 120px;
        height: 120px;

        object-fit: contain;
        display: block;
    }

}

    /* MOBILE MENU */

    .menu-btn {
        width: 40px;
        height: 40px;

        right: 18px;

        font-size: 21px;

        border-radius: 9px;
    }

}
@media (max-width: 600px) {
    .header .header-logo {
        width: 120px !important;
        height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
        object-fit: contain !important;
    }
}