body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f8f5f2;
}

/* TOP BAR */
.top-bar {
    background: #d4c2a8; /* spa luxury beige tone */
    color: #333;
    display: flex;
    justify-content: space-between;
    padding: 8px 50px;
    font-size: 14px;
    align-items: center;
}

.top-bar i {
    margin-right: 6px;
}

/* LEFT SIDE */
.top-left span {
    margin-right: 20px;
}

/* RIGHT SIDE */
.top-right a {
    color: #333;
    margin-left: 15px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #000;
}

/* LOGO FIX */
.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* DESKTOP */
#navbar {
    display: flex;
    gap: 25px;
}

/* MOBILE */
@media(max-width:768px){

    #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f8f5f0;
        flex-direction: column;
        display: none;
        z-index: 9999;
    }

    #navbar.active {
        display: flex;
    }

    #navbar a {
        width: 100%;
        padding: 15px;
        border-top: 1px solid #ddd;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .header .btn {
        display: none;
    }
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: #fff;
    position: relative;
    z-index: 1000;
}

/* NAV DESKTOP */
.header nav {
    gap: 25px;
}

.header nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE VIEW */
@media(max-width: 768px){

    .menu-toggle {
        display: block;
    }

    .header {
        padding: 15px 20px;
    }

    /* NAV MOBILE STYLE */
    .header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f8f5f0; /* spa theme */
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .header nav a {
        width: 100%;
        padding: 15px;
        border-top: 1px solid #ddd;
        text-align: center;
    }

    .header nav.active {
        display: flex;
    }

    /* BOOK BUTTON HIDE OR ADJUST */
    .header .btn {
        display: none;
    }
}

/* GOLD BUTTON */
.btn {
    background: linear-gradient(45deg,#c89b3c,#f5d27a);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* WAVE DESIGN */

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: #f8f5f2;
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px;
}

/* HERO PREMIUM */
.hero {
    height: 100vh;
    background: url('../images/deep-tissue.jpg') center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero h1 {
    font-size: 55px;
}

.hero p {
    margin: 15px 0;
}

/* ABOUT */

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* stack image above text */
        text-align: center;
        padding: 30px 20px;
    }

    .about-img {
        margin-bottom: 20px; /* space between image and text */
        order: 1; /* ensures image stays on top */
    }

    .about-text {
        order: 2; /* text comes after image */
    }



    .about-text .btn {
        padding: 10px 20px;
    }
}

/* SERVICES */
.services {
    text-align: center;
    padding: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* GALLERY */
.gallery {
    text-align: center;
    padding: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
}

/* CTA */

.cta {
    background: linear-gradient(45deg,#b88a3b,#f4c76b);
    text-align: center;
    padding: 80px 20px;
    color: white;
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

/* WHATSAPP */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px; /* RIGHT SIDE */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* COMMON STYLE */
.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
    background: #1abc9c; /* teal */
}

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

/* HOVER EFFECT */
.floating-buttons a:hover {
    transform: scale(1.1);
}


/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* WHY SECTION */
.why {
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.why-grid {
    display: flex; /* horizontal row on desktop */
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* allow wrapping if window smaller */
}

.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1 1 250px; /* min width 250px, grow if possible */
    max-width: 300px;
    text-align: center;
}

.why-card i {
    font-size: 2.5rem;
    color: #c89b3c;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 1rem;
    color: #555;
}

/* PACKAGES */
.packages {
    padding: 80px 20px;
    background: white;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.package-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.package-card .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    margin-top: 15px;
    box-sizing: border-box;
}

@media(max-width:768px){
    .package-card .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.package-card:hover {
    transform: scale(1.05);
}

/* HIGHLIGHT PLAN */
.package-card.highlight {
    background: linear-gradient(45deg,#c89b3c,#f4d47c);
    color: white;
}

.tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 20px;
    background: #f8f5f2;
}

.testi-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.testi-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 260px;
    text-align: center;
    transition: 0.4s;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* BOOKING PAGE */
.booking {
    padding: 100px 20px;
    text-align: center;
}

.booking-form {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}