* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9c900;
    color: #111;
    line-height: 1.6;
}


/* ===== HERO ===== */

.hero {

    min-height: 90vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;

}


.logo {

    width: 260px;
    max-width: 80%;

    margin-bottom: 35px;

}



.hero h1 {

    font-size: 64px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;

}



.hero p {

    font-size: 24px;

    margin: 25px 0 35px;

}




.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    justify-content: center;

}



.btn {

    display: inline-block;

    padding: 15px 35px;

    background: white;

    color: #111;

    text-decoration: none;

    border-radius: 40px;

    font-weight: bold;

    transition: 0.3s;

}



.btn:hover {

    transform: translateY(-3px);

}



.btn.dark {

    background: #111;

    color: white;

}





/* ===== SECTIONS ===== */


section {

    max-width: 1100px;

    margin: 40px auto;

    padding: 40px 25px;

}



h2 {

    text-align: center;

    font-size: 38px;

    margin-bottom: 35px;

    font-weight: 900;

}





/* ===== ABOUT ===== */


.about {

    background: white;

    border-radius: 25px;

    text-align: center;

}



.about p {

    font-size: 20px;

}





/* ===== SERVICES ===== */


.services {

    background: transparent;

}



.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}



.card {

    background: white;

    padding: 30px;

    border-radius: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

}



.card h3 {

    font-size: 22px;

    margin-bottom: 15px;

}



.price {

    font-size: 34px;

    font-weight: 900;

    margin-bottom: 20px;

}



.card ul {

    padding-left: 20px;

}



.note {

    margin-top: 20px;

    font-size: 13px;

    color: #666;

}





/* ===== BOOKING ===== */


.booking {

    background: white;

    border-radius: 25px;

    text-align:center;

}



.booking p {

    font-size: 22px;

    margin-bottom: 25px;

}





/* ===== CONTACT ===== */


.contact {

    background:#111;

    color:white;

    border-radius:25px;

    text-align:center;

}



.contact p {

    font-size:20px;

    margin:10px;

}





/* ===== MAP ===== */


.map {

    background:white;

    border-radius:25px;

}



.map iframe {

    width:100%;

    height:400px;

    border:0;

    border-radius:20px;

}





footer {

    text-align:center;

    padding:30px;

    background:#111;

    color:white;

}





/* ===== MOBILE ===== */


@media(max-width:900px){


.service-grid {

    grid-template-columns:1fr;

}


.hero h1 {

    font-size:45px;

}


.hero p {

    font-size:20px;

}


.logo {

    width:200px;

}


}