*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Roboto Condensed", sans-serif;
}

body{
    background:#fffdf7;
}

.contact-page{
    padding:80px 20px;
}

h1{
    text-align:center;
    font-size:36px;
}

.subtitle{
    text-align:center;
    color:#555;
    margin-bottom:40px;
}

.contact-wrapper{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:40px;
}

.company-box{
    flex:1;
}

.company-box h2{
    margin-bottom:15px;
}

.company-box p{
    line-height:1.8;
    margin-bottom:10px;
}

.form-box{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.form-box input,
.form-box textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.form-box button{
    width:100%;
    padding:14px;
    background:#f4c430;
    border:none;
    border-radius:30px;
    font-weight:bold;
}

.form-box button:hover{
    background:#e0b500;
}

@media(max-width:768px){
    .contact-wrapper{
        flex-direction:column;
    }
}


.popup{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#4CAF50;
    color:white;
    padding:15px 25px;
    border-radius:8px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}




.whatsapp-float{
    position:fixed;
    bottom:200px;
    right:40px;
    background:#25d366;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s ease;
}

.whatsapp-float img{
    width:35px;
}

/* Mobile optimization */
@media(max-width:600px){
    .whatsapp-float{
        width:50px;
        height:50px;
        bottom:15px;
        right:15px;
    }

    .whatsapp-float img{
        width:28px;
    }
}
