html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    margin:0;
    background:#f4f4f4;
    text-align:center;
}

/* HEADER */

header{
    background:#4CAF50;
    color:white;
    padding:30px 20px;
}

header h1{
    font-size:60px;
    margin:0;
    font-weight:bold;
}

header p{
    font-size:22px;
    margin-top:10px;
}

/* NAVIGATION */

nav{
    margin-top:20px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-size:20px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#FFD700;
}

/* CONTACT BUTTON */

.contact-btn{
    background:#ff4f87;
    color:white !important;
    padding:10px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
}

.contact-btn:hover{
    background:#e91e63;
    color:white !important;
}

/* SECTIONS */

section{
    padding:25px 15px;
}

section h2{
    font-size:32px;
    margin-bottom:15px;
}

section p{
    font-size:20px;
}

/* TAGLINE */

.tagline{
    color:#ff4f87;
    font-size:24px;
    font-weight:bold;
}

/* BUTTONS */

button{
    background:#ff4f87;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#e91e63;
}

/* TRUST CARDS */

.trust-cards{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.trust-card{
    background:white;
    width:280px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.trust-card h3{
    color:#ff4f87;
    margin-bottom:10px;
}

.trust-card p{
    font-size:16px;
    color:#555;
}

.trust-card:hover{
    transform:translateY(-4px);
    transition:0.3s;
}

/* LISTS */

.about-list,
.service-list,
.contact-list{
    max-width:700px;
    margin:auto;
    list-style:none;
    padding:0;
}

.about-list li,
.service-list li,
.contact-list li{
    background:white;
    margin:8px 0;
    padding:12px 18px;
    border-radius:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    text-align:left;
    font-size:18px;
}

.about-list li:hover,
.service-list li:hover,
.contact-list li:hover{
    transform:translateY(-2px);
    transition:0.3s;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:10px 15px;
    border-radius:8px;
    display:inline-block;
}

/* BOOKING FORM */

.booking-form{
    width:90%;
    max-width:950px;
    margin:auto;
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.booking-form label{
    display:block;
    text-align:left;
    margin-bottom:5px;
    font-weight:bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    box-sizing:border-box;
    font-size:16px;
}

.booking-form textarea{
    resize:vertical;
}

.time-row{
    display:flex;
    gap:15px;
}

.time-row div{
    flex:1;
}

#endTime{
    background:#ffeef3;
    color:#e91e63;
    font-weight:bold;
}

.booking-form button{
    width:100%;
}

/* FOOTER */

footer{
    background:#4CAF50;
    color:white;
    padding:15px;
    margin-top:30px;
}

footer a{
    color:white;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

/* MOBILE */

@media(max-width:768px){

    header h1{
        font-size:40px;
    }

    header p{
        font-size:18px;
    }

    nav a{
        display:block;
        margin:10px 0;
    }

    .time-row{
        flex-direction:column;
    }

    .trust-card{
        width:90%;
    }

    .booking-form{
        width:95%;
        padding:15px;
    }
}
#contact p a{
    color:#ff4f87;
    font-weight:bold;
    text-decoration:none;
}

#contact p a:hover{
    text-decoration:underline;
}