/* --- GLOBAL VARIABLES & RESET --- */
:root {
    --bg-dark: #0a0806;
    --gold-primary: #d4a359;
    --gold-hover: #b88a42;
    --gold-light: #f1dfb8;
    --text-light: #f5f5f5;
    --text-dark: #222222;
    --card-border: #e8e1d2;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 50px;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(10,8,6,0.6) 100%);
    position: absolute;
    width: 100%;
    top: -10px;
    z-index: 100;
    gap: 20px;
}

.logo {
    display: block;
    flex-shrink: 0;
    margin: 0;
    text-align: left;
}

.logo img {
    width: 320px;
    min-width: 240px;
    height: auto;
    display: block;
}

.logo-icon {
    font-size: 20px;
    color: var(--gold-primary);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--gold-primary);
    line-height: 1;
    margin-top: 2px;
}

.logo p {
    font-size: 7.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dddddd;
    padding: 5px 0;
}

nav a.active, nav a:hover {
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0a2c02;
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
    padding: 0;
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.social-icon:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--gold-primary);
    color: #000;
    border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background-color: rgba(212, 163, 89, 0.2);
}

.btn-dark {
    background-color: #202b1f;
    color: var(--text-light);
    border: none;
}

.btn-dark:hover {
    background-color: #121a11;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(rgba(10, 8, 6, 0.08), rgba(10, 8, 6, 0.16)), 
                url('../html/assets/room.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 60px 50px;
}

.hero-content {
    max-width: 450px;
    margin-top: 110px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero h2 span {
    color: #ffd700;
    display: block;
    margin-top: 0;
}

.hero h2 .hero-restore {
    color: var(--gold-primary);
    display: inline;
}

.flower-divider {
    color: var(--gold-primary);
    font-size: 12px;
    margin: 12px 0;
}

.hero p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.4px;
    color: #d1d1d1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    font-size: 12px;
    font-weight: 800;
}

section[id],
.hero {
    scroll-margin-top: 120px;
}

.booking-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    background-color: rgba(10, 8, 6, 0.96);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
}

.booking-panel h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 14px;
}

.booking-panel p {
    color: #d8d3c6;
    line-height: 1.75;
    margin-bottom: 22px;
}

.booking-panel .btn {
    min-width: 220px;
}

.booking-iframe {
    width: 100%;
    min-height: 420px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: #111;
}

/* --- FEATURES BAR --- */
.features-bar {
    background-color: #ffffff;
    color: var(--text-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.feature-item {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #e2e2e2;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.feature-item h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 9px;
    color: #666;
    margin-top: 2px;
    font-weight: 600;
}

/* --- PROMOTIONS SECTION (3 COLUMNS) --- */
.promotions {
    background-color: #f7f5f0;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 20px;
}

.promo-card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

/* Card 1: Morning Escape */
.card-morning {
    background-image: url('../html/assets/morning.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 25px;
    text-align: right;
    align-items: flex-end;
}

.card-morning > div {
    margin-left: auto;
    max-width: 220px;
    padding-right: 8px;
    transform: translateX(12px);
}

.card-couples > div {
    margin-left: auto;
    max-width: 220px;
    padding-right: 8px;
    transform: translateX(12px);
}

.card-vouchers .voucher-info {
    margin-left: auto;
    max-width: 220px;
    padding-right: 8px;
    transform: translateX(12px);
}

.card-morning h3 {
    white-space: nowrap;
}

.tag {
    background-color: #202b1f;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #273b22;
    line-height: 1.1;
}

.promo-time {
    font-size: 11px;
    color: #1f1f1f;
    margin: 4px 0 8px;
    font-weight: 600;
}

.promo-price {
    font-size: 11px;
    color: #1f1f1f;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.card-morning .promo-price {
    transform: translateX(-10px);
}

.promo-price strong {
    font-size: 26px;
    color: #273b22;
}

.promo-note {
    font-size: 9px;
    color: #2a2a2a;
    margin-bottom: 12px;
    max-width: 180px;
    font-weight: 500;
}

.card-morning .promo-note {
    margin-left: auto;
    text-align: right;
    color: #111111;
    margin-top: 8px;
    transform: translate(12px, 6px);
}

/* Card 2: Couples Massage */
.card-couples {
    background: url('../html/assets/couple2.png') center/cover no-repeat;
    padding: 20px 25px;
    color: var(--text-light);
    text-align: right;
    align-items: flex-end;
}

.card-couples .heart-icon {
    color: var(--gold-primary);
    font-size: 36px;
    margin-bottom: 5px;
    align-self: flex-end;
    transform: translateX(-215%);
}

.card-couples h4 {
    color: var(--gold-primary);
    font-size: 16px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-couples p {
    font-size: 10px;
    color: #ccc;
    margin-bottom: 15px;
    max-width: 140px;
    margin-left: auto;
    transform: translateX(3px);
}

/* Card 3: Gift Vouchers */
.card-vouchers {
    background: url('../html/assets/giftvoucher.png') left center/cover no-repeat;
    padding: 20px 25px;
    color: var(--text-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.voucher-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.voucher-img {
    width: 130px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.voucher-info h5 {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #886227;
    font-weight: 700;
    align-self: center;
    text-align: center;
}

.voucher-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #222;
    margin-bottom: 6px;
}

.voucher-info p {
    font-size: 9.5px;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.voucher-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.voucher-info .btn {
    align-self: flex-end;
    margin-top: 12px;
}

.voucher-features {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 11px;
    color: #1f1f1f;
    text-align: center;
}

.voucher-feature i {
    font-size: 14px;
    color: #886227;
    display: block;
    margin-bottom: 2px;
}

/* --- REVIEWS / TESTIMONIALS SECTION --- */
.reviews-section {
    background-color: #f7f5f0;
    padding: 0 40px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-header::before, .section-header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background-color: #d1c7b7;
}

.section-header::before { left: 0; }
.section-header::after { right: 0; }

.section-header span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #887a64;
    font-weight: 700;
    background-color: #f7f5f0;
    padding: 0 15px;
}

.reviews-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.live-badge {
    align-self: flex-start;
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background-color: rgba(212, 163, 89, 0.14);
    color: var(--gold-primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-score {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.google-score i {
    font-size: 28px;
}

.score-num {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.stars {
    color: #f4b400;
    font-size: 10px;
}

.score-sub {
    font-size: 8.5px;
    color: #777;
    margin-top: 2px;
}

.testimonial p {
    font-style: italic;
    font-size: 11px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 6px;
}

.testimonial .author {
    font-size: 9.5px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

/* Testimonials avatars & gallery */
.testimonial {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
}

.testimonial .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.testimonial .content p { color: #444; margin-bottom: 6px; }

.gallery {
    padding: 30px 40px;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

/* --- FOOTER SECTION --- */
footer {
    background: linear-gradient(
        90deg,
        #0F1C0A 0%,
        #172E11 50%,
        #203D18 100%
    );
    border-top: 1px solid rgba(212, 163, 89, 0.2);
    font-size: 11px;
    color: #aaa;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.5fr;
    padding: 30px 40px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    column-gap: 34px;
    row-gap: 24px;
}

.footer-logo {
    text-align: center;
    margin-left: 0;
    margin-top: 0;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    width: 230px;
    height: auto;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
}

.footer-info-item i {
    font-size: 20px;
    color: var(--gold-primary);
}

.footer-address {
    font-size: 11px;
    line-height: 1.35;
}

.footer-contact-text {
    font-size: 11px;
}

.map-box {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 163, 89, 0.3);
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta {
    text-align: center;
}

.btn-large-gold {
    background-color: var(--gold-primary);
    color: #000;
    width: 60%;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.phone-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.phone-label {
    display: inline-block;
    width: 56px;
    text-align: right;
}

.phone-text strong {
    color: var(--gold-primary);
    font-size: 15px;
    font-weight: 700;
    margin-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 12px 40px;
    font-size: 9px;
    color: #666;
    background-color: #050403;
}
.contact-us-text {
    margin-top: 28px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #c9a227;
}

.footer-bottom a {
    color: #888;
    margin-left: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .promotions { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 20px; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .hero { padding: 140px 20px 40px; text-align: center; }
    .hero-buttons { justify-content: center; }
    .features-bar { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .promotions { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .footer-main { grid-template-columns: 1fr; text-align: center; row-gap: 18px; }
}
