*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    color:#333;
    line-height:1.7;
}

.hero{
    background: #EEAECA;
background: radial-gradient(circle,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin:0 auto 30px;
}

.btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:8px;
    font-size:22px;
    font-weight:bold;
}
.sticky-call{
    position:fixed;
    bottom:-100px;
    left:0;
    width:100%;
    z-index:9999;
    transition:all .3s ease;
}

.sticky-call.show{
    bottom:0;
}
.contact-section{
    padding:30px 20px;
    background:#f8f8f8;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:stretch;
}

.contact-info{
    flex:1;
}

.contact-info h2{
    margin-bottom:20px;
    font-size:32px;
    color:#003366;
}

.contact-item{
    margin-top:20px;
    line-height:1.8;
}

.contact-item a{
    color:#003366;
    text-decoration:none;
}

.contact-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    background:#d32f2f;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.contact-btn:hover{
    opacity:.9;
}

.contact-map{
    flex:1;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:350px;
    border:none;
    border-radius:10px;
}

/* Mobil */
@media (max-width:768px){

    .contact-container{
        flex-direction:column;
    }

    .contact-map iframe{
        min-height:300px;
    }

}

.sticky-call a{
    display:block;
    text-align:center;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px;
    font-size:22px;
    font-weight:bold;
    box-shadow:0 -2px 10px rgba(0,0,0,.2);
}

.section{
    max-width:1100px;
    margin:auto;
    padding:30px 20px;
}

.section h2{
    text-align:center;
    margin-bottom:30px;
    margin-top: 20px;
    color:#0057b8;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.box{
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:25px;
    margin: 10px;
}

.box h3{
    margin-bottom:10px;
}

.call{
    background:#f5f5f5;
    text-align:center;
    padding:80px 20px;
}

footer{
    background:#003366;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

footer a{
    color:#fff;
    text-decoration:none;
}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.btn{
    width:100%;
    max-width:320px;
}
}