html, body {
    height: 100%;
}
body {
    margin: 0;
    padding-top: 100px; /* pushes content below header */
}
/* GENERAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CONTACT WRAPPER */
.wrapper {
    width: 90%;
    max-width: 520px;
    margin: 120px auto 40px auto;
    padding: 25px;
    border-radius: 8px;
    background: rgba(0,0,0,0.7);
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* TITLE */
.wrapper .title h1 {
    color: #c5ecfd;
    text-align: center;
    margin-bottom: 20px;
}

/* FORM */
.contact-form {
    display: flex;
    gap: 15px;
}

.input-fields,
.msg {
    width: 50%;
}

/* INPUTS */
.input-fields {
    display: flex;
    flex-direction: column;
}

.input-fields .input,
.msg textarea {
    margin: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #c5ecfd;
    padding: 10px;
    color: #c5ecfd;
    width: 100%;
    font-size: 16px;
}

/* TEXTAREA */
.msg textarea {
    height: 150px;
}

/* BUTTON */
button {
    width: 100%;
    background: rgb(168, 132, 33);
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
}

/* MAP */
.map-wrapper {
    width: 90%;
    max-width: 600px;
    margin: 30px auto;
}

.map iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* FOOTER */
.footer_index {
    width: 100%;
    padding: 20px;
    background: rgb(168, 132, 33);
    text-align: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .contact-form {
        flex-direction: column;
    }

    .input-fields,
    .msg {
        width: 100%;
    }

    .msg textarea {
        height: 100px;
    }

    .wrapper {
        margin: 20px auto;
        padding: 20px;
    }
}
@media (max-width: 600px) {
    body {
        padding-top: 80px;
    }

    .wrapper {
        margin: 100px auto 30px auto;
    }
}
.social-menu,
.phone-social-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-menu ul,
.phone-social-menu ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-menu li,
.phone-social-menu li {
    display: inline-block;
}
.right {
    text-align: left;
}

.phone-main-content {
    text-align: left;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}.whatsapp-float {
    text-decoration: none;
}