*, *::before, *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, button, input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.screen {
    position: relative;
    background: #1D1D1D;
    padding: 0;
    overflow: hidden;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #4d4d4f;
    color: #FFC44D;
    font-size: 1.5rem;
    position: relative;
    height: 63px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.screen-header-left {
    display: flex;
}

.screen-header-button {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.screen-header-button.close {
    background: #FD5E56;
}
.screen-header-button.maximize {
    background: #FFBC2E;
}
.screen-header-button.minimize {
    background: #2BC840;
}

.screen-header-button.close:hover,
.screen-header-button.maximize:hover,
.screen-header-button.minimize:hover {
    opacity: 0.8;
}

.screen-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.app-contact {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}
.socials {
    text-align: center;
    display:grid;
    grid-template-columns: repeat(4,1fr);
}
.socials li {
    display: inline-flex;
    border: 1px solid white;
    /* width: 30px; */
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    height: 44px;
    width: 44px !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #222;
    border-color: #444;
    font-size: 20px;
    
}
.socials li a {
    color: white;
}
.socials li a:hover {
    color: #FFBC2E;
}

.app-form-group {
    margin-bottom: 15px;
}

.app-form-control {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #666;
    color: #ddd;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}

.app-form-control::placeholder {
    color: #666;
}

.app-form-control:focus {
    border-bottom-color: #FFC44D;
}

.app-form-group.buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.app-form-button {
    background: none;
    border: none;
    color: #FFC44D;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.app-form-button:hover {
    color: #FFC44D;
}
.contact-btn {
    padding: 20px;
    border-radius: 50%;
    display: inline-flex;
    text-align: center;
    height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #333;
}
.contact-btn a {
    text-align: center;
}
.contact-btn i {
    position: relative;
    left: 2px;
    font-size: 30px;
}
.contact-us-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-us-txt {
        font-size: 1rem;
    }
    .screen-header {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
}

@media (max-width: 520px) {
    .contact-us-txt {
        font-size: 0.8rem;
    }
    .screen-header {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
}
