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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #eef3eb 0%, #e5ebe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    font-size: 1.5em;
    color: #2c5f4f;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #2c5f4f;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7a9485;
}

.nav-links .nav-book {
    background: #2c5f4f;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-links .nav-book:hover {
    background: #234538;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: #2c5f4f;
    cursor: pointer;
    padding: 5px;
}

.hero-banner {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.container {
    max-width: 1100px;
    margin: -70px auto 0;
    padding: 0 20px 40px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
}

h1 {
    font-size: 2.8em;
    color: #2c5f4f;
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: 2px;
}

.trading-as {
    font-size: 0.9em;
    color: #4d7262;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.1em;
    color: #4d7262;
    font-style: italic;
}

.rating {
    font-size: 1.3em;
    color: #2c5f4f;
    margin-top: 15px;
    opacity: 1;
    transition: opacity 0.15s ease;
}

/* Prevent "312 -> 315" flash: keep space, but fade in once API value is applied. */
.rating.rating-loading {
    opacity: 0;
}

.rating .stars {
    color: #ffa500;
}

.rating a {
    color: inherit;
    text-decoration: none;
}

.rating a:hover {
    text-decoration: underline;
}

.essentials-strip {
    background: #edf4f1;
    border: 1px solid #d5e3dc;
    border-radius: 12px;
    margin: -20px 0 40px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 18px;
    align-items: start;
}

.essential-item {
    min-width: 0;
}

.essential-label {
    font-size: 0.78em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3d6454;
    margin-bottom: 4px;
    font-weight: 600;
}

.essential-value {
    color: #2c5f4f;
    font-size: 1.03em;
    line-height: 1.45;
    font-weight: 600;
    padding-top: 2px;
}

.essential-value.address-value {
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 3px;
}

.essential-note {
    margin-top: 4px;
    color: #3d6454;
    font-size: 0.78em;
    font-weight: 400;
    line-height: 1.35;
}

.essential-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: #2c5f4f;
    font-size: 0.88em;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #bfd5cb;
    background: #f6fbf8;
    border-radius: 999px;
    padding: 8px 12px;
    min-height: 36px;
}

.essential-link:hover {
    color: #234538;
    border-color: #9fc0b2;
    background: #eef7f2;
}

.location-link {
    margin-top: 0;
    font-size: 1em;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: 0;
    display: inline;
}

.address-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.address-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.essential-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.essential-actions .essential-link {
    margin-top: 0;
    min-width: 154px;
}

.essential-contact-link {
    color: inherit;
    text-decoration: none;
}

.essential-contact-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.booking-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.booking-section h2 {
    font-size: 2em;
    color: #2c5f4f;
    margin-bottom: 16px;
    font-weight: 300;
}

.booking-intro {
    font-size: 1em;
    color: #666;
    font-style: italic;
    margin-bottom: 24px;
}

.treatment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 24px;
    text-align: left;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f8fbf9;
    border: 1px solid #dde8da;
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

button.treatment-card {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    line-height: inherit;
}
.treatment-card:hover {
    border-color: #2c5f4f;
    box-shadow: 0 2px 10px rgba(44,95,79,0.12);
}

.tc-badge {
    display: inline-block;
    background: #e8f0eb;
    border: 1px solid #b0ccbb;
    color: #2c5f4f;
    font-size: 0.72em;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.tc-name {
    font-size: 1em;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
}

.tc-desc {
    font-size: 0.88em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.tc-price {
    font-size: 0.88em;
    color: #2c5f4f;
    font-weight: 600;
    margin-top: auto;
}

.book-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #2c5f4f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.book-button:hover {
    background: #234538;
}

.booking-help {
    margin-top: 12px;
    font-size: 0.98em;
    color: #4d4d4d;
}

.booking-help a {
    color: #2c5f4f;
}

.space-section {
    background: white;
    padding: 34px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.space-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.space-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    display: block;
}

.space-copy h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.8em;
}

.space-caption {
    color: #4d4d4d;
    margin-bottom: 12px;
    font-size: 1.02em;
}

.space-points {
    margin-left: 20px;
    color: #555;
}

.space-points li {
    margin-bottom: 6px;
}

.about-section {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #2c5f4f;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

.reviews-heading-link {
    color: inherit;
    text-decoration: none;
}

.reviews-heading-link:hover {
    text-decoration: underline;
}

.about-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Testimonial Carousel - 3 Column */
.reviews-section {
    background: white;
    padding: 50px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    margin: 0 0 25px;
}

.carousel-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: calc(100% / 3);
    padding: 0 8px;
    display: flex;
    flex-direction: column;
}

.review-item {
    padding: 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 10px;
    border-left: 5px solid #2c5f4f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.review-stars {
    color: #ffa500;
    font-size: 1.05em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1em;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.review-author {
    font-size: 0.95em;
    color: #2c5f4f;
    font-weight: bold;
}

.review-treatment {
    font-size: 0.85em;
    color: #4d7262;
    margin-top: 3px;
}

.review-read-more {
    background: none;
    border: none;
    color: #2c5f4f;
    font-size: 0.88em;
    cursor: pointer;
    padding: 0;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-top: 6px;
    display: none;
}

.review-read-more:hover {
    color: #234538;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: #2c5f4f;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44, 95, 79, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #234538;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.progress-container {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #2c5f4f;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.review-cta {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0f8f5 0%, #e6f1ec 100%);
    border: 1px solid #d5e7df;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.review-cta-text h3 {
    color: #2c5f4f;
    font-size: 1.25em;
    font-weight: 400;
    margin-bottom: 6px;
}

.review-cta-text p {
    color: #5f746a;
    font-size: 0.98em;
}

.review-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #2c5f4f;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 16px rgba(44, 95, 79, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.review-cta a:hover {
    background: #234538;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(44, 95, 79, 0.3);
}

footer {
    text-align: center;
    padding: 40px 20px 20px;
    color: #4d7262;
    font-size: 0.9em;
    line-height: 1.6;
}

footer a {
    color: #4d7262;
    text-decoration: none;
}

footer a:visited {
    color: #4d7262;
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        gap: 0;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1em;
    }

    .nav-links .nav-book {
        margin: 10px 0 0;
        text-align: center;
        display: block;
    }

    .container {
        max-width: 900px;
        padding: 20px 15px;
    }

    h1 {
        font-size: 2em;
    }

    .hero-banner {
        height: 260px;
    }

    .booking-section, .about-section, .reviews-section {
        padding: 30px 20px;
    }

    .space-section {
        padding: 26px 20px;
    }

    .essentials-strip {
        grid-template-columns: 1fr;
        margin-top: -10px;
        padding: 14px 16px;
        gap: 14px;
    }

    .essential-value {
        font-size: 1em;
    }

    .essential-value.address-value {
        font-size: 0.92em;
    }

    .essential-link {
        min-height: 40px;
        padding: 9px 13px;
        margin-top: 8px;
    }

    .location-link {
        margin-top: 0;
        min-height: 0;
        padding: 0;
    }

    .essential-actions {
        margin-top: 8px;
    }

    .treatment-cards {
        grid-template-columns: 1fr;
    }

    .about-content p {
        font-size: 1em;
        text-align: left;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .carousel-wrapper {
        margin: 0 0 25px;
    }

    .review-text {
        font-size: 0.95em;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .progress-container {
        max-width: 200px;
    }

    .carousel-nav {
        gap: 15px;
    }

    .review-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
