* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gupter', 'Poppins', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: white;
    background-color: black;
    text-align: center;
    padding: 10px 20px;
    border-bottom: 4px solid #f4c542;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin-top: 8px;
    margin: 5px 0;
    font-size: 2rem;
    color: #f4c542;
    letter-spacing: 1px;
}

.logo {
    width: 180px;
    max-width: 90%;
    margin: 0 auto 10px;
    margin-bottom: 10px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* NAVIGATION OPTIONS */

nav {
    margin-top: 8px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f4c542;
}

nav a.active {
    color: #f4c542;
    border-bottom: 2px solid #f4c542;
    padding-bottom: 4px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

.hero a.btn-link {
    background-color: #f4c542;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.mini-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 18px;
}

.hero a.btn-link:hover {
    transform: translateY(-2px);
    background-color: #e5b931;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/*STATS */
.stats {
    max-width: 900px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stats div {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.stats div:hover {
    transform: translateY(-3px);
}

.stats h3 {
    font-size: 2rem;
    color: #f4c542;
}

.stats p {
    color: #555;
    font-weight: 600;
}

/* SECTIONS */
.services, .about {
    background: white;
    font-size: 18px;
    max-width: 1000px;
    padding: 50px 30px;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services:hover, .about:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.services h2, .about h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-top: 25px;
}

.about p {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICE CARDS */

.service-card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #f4c542;
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.service-card span {
    font-size: 2rem;
}

.service-card h3 {
    margin: 10px 0;
}

.service-card p {
    color: #555;
    font-size: 1.15rem;
    margin-top: 8px;

}

/* BOOKING */
.booking-section h2 {
    margin-bottom: 15px;
    color: #f4c542;
    display: inline-block;
    border-bottom: 3px solid #f4c542;
    padding-bottom: 1px;
}

.booking-section {
    background: white;
    max-width: 800px;
    margin: 30px auto;
    padding: 50px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: center;
}

#booking {
    scroll-margin-top: 230px;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
}

#bookingForm input {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

#bookingForm label {
    text-align: left;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: underline;
}

#bookingForm input:hover {
    border-color: #f4c542;
}

#bookingForm button {
    background-color: #f4c542;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

#bookingForm button:hover {
    transform: translateY(-2px);
    background-color: #e5b931;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

#bookingMessage {
    margin-top: 20px;
    font-weight: bold;
}

/* Booking Summary */
#bookingSummary {
    margin-top: 30px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 12px;
    display: none;
    border-top: 2px solid #f4c542;
}

#bookingSummary p {
    margin: 5px 0;
}

#bookingSummary strong {
    color: #f4c542;
}

/* CTA */
.cta {
    max-width: 900px;
    margin: 30px auto;
    padding: 50px 30px;
    background: #111;
    opacity: 0.95;
    color: white;
    border-radius: 18px;
    text-align: center;
}

.cta h2 {
    color: #f4c542;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
    color: #ddd;
}

.cta a.btn-link {
    background-color: #f4c542;
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

/* FOOTER */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 35px 20px;
    margin-top: 40px;
}

footer h3 {
    color: #f4c542;
    margin-bottom: 8px;
}

.footer-small{
    margin-top: 12px;
    font-size: 0.85rem;
    color:#aaa
}

/* MOBILE */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p, .services li, .about p {
        font-size: 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        margin: 20px 15px;
    }

    .services, .about {
        margin: 20px 15px;
        padding: 35px 20px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .cta {
        margin: 20px 15px;
    }
}

/* CONTACT SECTION */

.contact-section {
    background: white;
    max-width: 800px;
    margin: 30px auto;
    margin-top: 20px;
    padding: 50px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-section p {
    margin-bottom: 10px;
    color: #555;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

#contactForm label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: Arial, sans-serif;

}

#contactForm input:focus, #contactForm textarea:focus {
    border: 1px solid #f4c542;
    outline: none;
    box-shadow: 0 0 5px rgba(244, 197, 66, 0.5);
}

#contactForm textarea {
    min-height: 140px;
    resize: vertical;
}

#contactForm button {
    background-color: #f4c542;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 200px;
    align-self: center;
}

#contactForm button:hover {
    background-color: #e5b931;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

#formMessage {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
}

/* PAGE INTRO */
.page-intro {
    color: #666;
    max-width: 650px;
    margin: 0 auto 25px;
    font-size: 1.05rem;
    font-weight: bold;
}