body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
}

.section-title{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.map-box{
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
    margin-bottom: 0;
}

.map-box iframe{
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.contact-section{
    /*background: #0f172a;*/
    color: #f8fafc;
    padding: 80px 60px;
    border-radius: 0 0 24px 24px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-content{
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.contact-small-title{
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.contact-content h2{
    font-size: 48px;
    margin: 0 0 28px;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.contact-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contact-content ul li{
    font-size: 18px;
    margin: 0;
    line-height: 1.75;
    color: #cbd5e1;
}

/* FLOAT BUTTON */
.floating-contact{
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact.collapsed .contact-message {
    display: block;
}

.floating-contact.expanded .contact-message {
    display: none;
}

.floating-contact.collapsed .float-btn:not(.close-btn) {
    display: none;
}

.floating-contact.expanded .float-btn:not(.close-btn) {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.contact-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    background: #0dbb16;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.float-btn{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.float-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.phone{
    background: #0dbb16;
}

.messenger{
    background: #3b82f6;
}

.close-btn{
    background: #ef4444;
    animation: vibrate 0.5s infinite;
}

/* RESPONSIVE */
@media screen and (max-width:768px){

    .contact-section{
        padding:50px 25px;
    }

    .contact-content h2{
        font-size:38px;
    }

    .contact-content ul li{
        font-size:20px;
    }

}