/* Samsung Landing Page */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fb;
    padding:20px;
}

.container{
    width:95%;
    max-width:1100px;
    margin:30px auto;
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

h1{
    text-align:center;
    color:#00695c;
    font-size:42px;
    margin-bottom:15px;
}

.sub-title{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:30px;
}

.booking-form{
    max-width:700px;
    margin:auto;
}

.booking-form input,
.booking-form select{
    width:100%;
    height:55px;
    margin-bottom:15px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.booking-form label{
    display:block;
    margin-bottom:10px;
    font-weight:bold;
}

button{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:#00796b;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.button-group{
    display:flex;
    gap:15px;
    margin:25px 0;
}

.call-btn,
.whatsapp-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#fff;
    padding:15px;
    border-radius:10px;
    font-weight:bold;
}

.call-btn{
    background:#1565c0;
}

.whatsapp-btn{
    background:#25D366;
}

h2{
    text-align:center;
    color:#00695c;
    margin:35px 0 25px;
}

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:25px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.bottom-box{
    margin-top:30px;
    background:#f2f6fb;
    border-radius:16px;
    padding:20px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
}

/* Tablet */

@media(max-width:992px){

.services{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

body{
    padding:10px;
}

.container{
    width:100%;
    margin:0;
    padding:20px;
    border-radius:10px;
}

h1{
    font-size:30px;
    line-height:40px;
}

.sub-title{
    font-size:16px;
    line-height:24px;
}

.booking-form input,
.booking-form select,
button{
    height:50px;
    font-size:16px;
}

.button-group{
    flex-direction:column;
}

.call-btn,
.whatsapp-btn{
    width:100%;
}

.services{
    grid-template-columns:1fr;
    gap:15px;
}

.service-box{
    font-size:20px;
    line-height:30px;
    padding:22px;
}

.bottom-box{
    font-size:18px;
}

}