* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scroll-snap-type: mandatory;
    font-family: Arial, sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    background: #f4f6f9;
    color: #333
}

/* ================= NAVBAR ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1e272e;
    color: #fff;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

nav .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ecc71;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================= HEADER ================= */
header {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
        url("/images/IMG-20260121-WA0008.jpg") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    height: auto;
    width: auto;
}

.logo {
    font-size: 3rem;
    margin-bottom: 10px;
}

header h1 {
    font-size: 3rem
}

header p {
    margin: 15px 0;
    font-size: 1.2rem
}

header button {
    padding: 15px 35px;
    font-size: 1rem;
    border: none;
    background: #2ecc71;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

header button:hover {
    background: #27ae60;
}

/* ================= SECTIONS ================= */
section {
    padding: 80px 10%
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50
}

/* SERVICES */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(50px);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: .3s;
}

.card:hover {
    transform: translateY(-10px)
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}

.card h3 {
    margin: 20px 0;
    color: #27ae60;
}


/* MARQUEE */
.marquee {
    overflow: hidden;
    white-space: nowrap
}

.marquee-track {
    display: inline-block;
    animation: scroll 25s linear infinite;
}

.marquee img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 10px;
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* FORMS */
form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

form button {
    background: #27ae60;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* REVIEWS */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.review {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.review i {
    color: #f1c40f
}

.review h4 {
    margin-top: 15px;
    color: #27ae60
}

.review-button {
    display: block;
    padding: 15px 35px;
    font-size: 1rem;
    border: none;
    margin: auto;
    background: #2ecc71;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.review-button:hover {
    background: #27ae60;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
}

/* CONTACT */
.contact-info {
    text-align: center;
    line-height: 2;
}

.contact-info i {
    color: #27ae60;
    margin-right: 10px
}

.contact-card {
    background: #2ecc71;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 60px 30px;
}

.contact-card button {
    margin-top: 20px;
    padding: 15px 30px;
    border: none;
    background: #fff;
    color: #27ae60;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-card h2 {
    margin: 20px 0;
    color: #27ae60;
    color: #ecf0f1;
}

.contact-card button:hover {
    background: #ecf0f1;
}

/* FOOTER */
footer {
    background: #1e272e;
    color: #fff;
    padding: 30px;
    text-align: center;
}

footer p {
    line-height: 1.5;
}

footer a{
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    color: #f4f6f9;
}

footer a::before{
    display: block;
    margin: auto 0.5rem;

    & .bi-youtube{
        color: crimson;
    }
}

section p {
    line-height: 1.5;
}

div.booking-container {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    margin: auto 0.5rem;
    padding: 0;
    gap: 1rem;
    place-items: center;
    place-content: center;
    flex-wrap: nowrap;
}

div.booking-container div {
    flex: 1 0 auto;
    display: block;
    /* margin: auto; */
}

div.booking-container div>video {
    pointer-events: none;
    display: block;
    /* margin: auto; */
    border-radius: 0.5rem;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
    nav ul {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #1e272e;
        flex-direction: column;
        display: none;
    }

    nav ul.active {
        display: flex
    }

    nav ul li {
        text-align: center;
        padding: 15px
    }

    .menu-toggle {
        display: block
    }

    header h1 {
        font-size: 2.2rem
    }

    div.booking-container {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-around;
        margin: auto 0.5rem;
        padding: 0;
        gap: 1rem;
        place-items: center;
        place-content: center;
        flex-wrap: wrap;
    }
    div.booking-container div{
        width: 95%;
    }

    video {
        display: block;
        width: 100%;
        height: 100%;
    }
}