/* =============================================================================
   KALEA SPA — Modern Premium CSS
   Target: Singapore tourists visiting Batam for spa day trips
   Aesthetic: Banyan Tree / Spa Botanica vibes — clean, minimal, sophisticated
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   ----------------------------------------------------------------------------- */
@import url('../fonts/fonts.css');

/* -----------------------------------------------------------------------------
   2. CSS RESET / BASE
   ----------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background-color: #F9F6F0;
    color: #2C1810;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #2C1810;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #7A6A62;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   4. TOP INFO BAR
   ----------------------------------------------------------------------------- */
.top-bar {
    background-color: #1C2B2D;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.05em;
    padding: 8px 0;
    width: 100%;
    z-index: 1100;
}

.top-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar__hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar__hours svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.top-bar__wa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B8935A;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.top-bar__wa:hover {
    color: #d4a96e;
}

.top-bar__wa svg {
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   5. NAVBAR
   ----------------------------------------------------------------------------- */
.navbar-modern {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 1.1rem 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar-modern.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 4px 30px rgba(44, 24, 16, 0.12);
    padding: 0.75rem 0;
}

.navbar-modern.transparent {
    background-color: transparent;
    box-shadow: none;
}

.navbar-modern.transparent:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.navbar-modern.transparent:not(.scrolled) .nav-link:hover {
    color: #B8935A;
}

.navbar-modern.transparent:not(.scrolled) .hamburger span {
    background-color: #fff;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.6rem 2rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.navbar-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.4s ease;
}

.navbar-modern.scrolled .nav-logo {
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2C1810;
    padding: 0.4rem 0.55rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #B8935A;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #B8935A;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link--star {
    color: #B8935A;
}

.nav-link--star::after {
    background-color: #B8935A;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2C1810;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1C2B2D;
    z-index: 1100;
    padding: 0 2.5rem 2rem;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.5rem;
}

.mobile-menu__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.mobile-menu__link {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: #B8935A;
    padding-left: 0.5rem;
}

.mobile-overlay {
    display: none;
}

.mobile-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* -----------------------------------------------------------------------------
   6. HERO SLIDER
   ----------------------------------------------------------------------------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1C2B2D;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.03);
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 43, 45, 0.25) 0%,
        rgba(28, 43, 45, 0.5) 50%,
        rgba(28, 43, 45, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-bottom: 5rem;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.6s;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.9s;
    letter-spacing: 0.04em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 1.1s;
}

.hero-buttons .btn-primary-teal,
.hero-buttons .btn-outline-gold {
    flex: 1;
    justify-content: center;
    text-align: center;
}

@media (max-width: 480px) {
    .hero-buttons .btn-primary-teal,
    .hero-buttons .btn-outline-gold {
        padding: 0.85rem 0.75rem;
        font-size: 0.72rem;
    }
}


.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 1.3s;
}

@media (min-width: 769px) {
    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
    background: #B8935A;
    transform: scale(1.3);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------------------------------------
   7. PAGE HERO BANNER (inner pages)
   ----------------------------------------------------------------------------- */
.page-hero {
    background-color: #1C2B2D;
    background-image: linear-gradient(135deg, #1C2B2D 0%, #2d4a4d 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: #FFFFFF;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------------------------
   8. SECTION STYLES
   ----------------------------------------------------------------------------- */
.section-pad {
    padding: 5rem 0;
}

.section-pad--sm {
    padding: 3rem 0;
}

.section-pad--lg {
    padding: 7rem 0;
}

.container-modern {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #2C1810;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8935A;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
}

.section-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #7A6A62;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto 2.5rem;
    max-width: 300px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #B8935A);
}

.section-divider::after {
    background: linear-gradient(to left, transparent, #B8935A);
}

.section-divider__diamond {
    width: 10px;
    height: 10px;
    background-color: #B8935A;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   9. TREATMENT CARDS
   ----------------------------------------------------------------------------- */
.treatment-card {
    background: #FFFFFF;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 24, 16, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(44, 24, 16, 0.14);
}

.treatment-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.review-cards-grid .treatment-card__image {
    aspect-ratio: unset;
}
.review-cards-grid .treatment-card__image img {
    width: 100%;
    height: auto;
    object-fit: unset;
}
.review-cards-grid .treatment-card:hover .treatment-card__image img {
    transform: none;
}

.treatment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card__image img {
    transform: scale(1.08);
}

.treatment-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(28, 43, 45, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.treatment-card:hover .treatment-card__image-overlay {
    opacity: 1;
}

.treatment-card__image-overlay span {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 1px solid #B8935A;
    padding-bottom: 2px;
}

.treatment-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.treatment-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.treatment-card__desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #7A6A62;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.treatment-card__cta {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3BA8B0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.treatment-card__cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-card__cta {
    color: #B8935A;
    gap: 0.7rem;
}

/* -----------------------------------------------------------------------------
   10. CARDS GRID
   ----------------------------------------------------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    align-items: start;
    margin-top: 2.5rem;
}

@media (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------------------------
   11. WELCOME / INTRO SECTION
   ----------------------------------------------------------------------------- */
.welcome-section {
    background-color: #F9F6F0;
    padding: 6rem 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welcome-text {}

.welcome-text .section-subtitle {
    text-align: left;
}

.welcome-text .section-heading {
    text-align: left;
}

.welcome-text .section-divider {
    margin-left: 0;
    justify-content: flex-start;
}

.welcome-text p {
    font-size: 1rem;
    color: #7A6A62;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.welcome-text p strong {
    color: #2C1810;
    font-weight: 700;
}

.welcome-decorative {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.welcome-decorative__img {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12);
}

.welcome-decorative__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-decorative__img--tall {
    grid-row: span 2;
    align-self: center;
}

.welcome-decorative__img--tall img {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-decorative__img--short {
    min-height: 160px;
}

.welcome-decorative__accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    border: 2px solid #B8935A;
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
}

@media (max-width: 900px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .welcome-decorative {
        display: none;
    }
}

/* -----------------------------------------------------------------------------
   12. BUTTONS
   ----------------------------------------------------------------------------- */
.btn-primary-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #3BA8B0;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 2px solid #3BA8B0;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary-teal:hover {
    background-color: transparent;
    color: #3BA8B0;
    transform: translateY(-2px);
}

.btn-primary-teal--white {
    background-color: #FFFFFF;
    color: #2C1810;
    border-color: #FFFFFF;
}

.btn-primary-teal--white:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #B8935A;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 2px solid #B8935A;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background-color: #B8935A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-gold--hero {
    background-color: #B8935A;
    border-color: #B8935A;
    color: #FFFFFF;
}

.btn-outline-gold--hero:hover {
    background-color: transparent;
    border-color: #B8935A;
    color: #B8935A;
    transform: translateY(-2px);
}

.btn-outline-gold--white {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-gold--white:hover {
    background-color: #FFFFFF;
    color: #2C1810;
    border-color: #FFFFFF;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: #3BA8B0;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.btn-link:hover {
    color: #B8935A;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #25D366;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 2px solid #25D366;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #1ebe5a;
    transform: translateY(-2px);
}

/* -----------------------------------------------------------------------------
   13. FLOATING WHATSAPP BUTTON (FAB)
   ----------------------------------------------------------------------------- */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
    width: 30px;
    height: 30px;
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: fabPulse 2.5s ease-in-out infinite;
}

@keyframes fabPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    50%  { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* -----------------------------------------------------------------------------
   14. FOOTER
   ----------------------------------------------------------------------------- */

/* Transport Strip */
.transport-strip {
    background: #1A1209;
    border-top: 1px solid rgba(184,147,90,0.25);
    border-bottom: 1px solid rgba(184,147,90,0.25);
    padding: 1.75rem 2rem;
}
.transport-strip__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.transport-strip__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184,147,90,0.5), transparent);
}
.transport-strip__content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    white-space: nowrap;
}
.transport-strip__icon {
    width: 52px;
    height: 20px;
    color: rgba(184,147,90,0.7);
    flex-shrink: 0;
}
.transport-strip__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.transport-strip__highlight {
    color: #B8935A;
    font-weight: 700;
    letter-spacing: 0.14em;
}
@media (max-width: 768px) {
    .transport-strip__text { font-size: 0.9rem; letter-spacing: 0.03em; white-space: normal; text-align: center; }
    .transport-strip__icon { display: none; }
    .transport-strip__line { display: none; }
    .transport-strip__content { white-space: normal; justify-content: center; flex-wrap: wrap; }
    .transport-strip__inner { justify-content: center; }
    .transport-strip { padding: 1rem 1.25rem; }
}

.footer-modern {
    background-color: #1C2B2D;
    color: rgba(255,255,255,0.75);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col {}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social__link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-social__link:hover {
    background-color: #B8935A;
    border-color: #B8935A;
    color: #FFFFFF;
}

.footer-social__link svg {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8935A;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    line-height: 1.4;
}

.footer-link:hover {
    color: #B8935A;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #B8935A;
    width: 16px;
    height: 16px;
}

.footer-contact-item p,
.footer-contact-item span,
.footer-contact-item a {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a:hover {
    color: #B8935A;
}

.footer-map iframe {
    width: 100%;
    min-height: 200px;
    border: none;
    border-radius: 2px;
    filter: grayscale(30%) contrast(1.05);
    display: block;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* -----------------------------------------------------------------------------
   15. GALLERY GRID
   ----------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 2px;
    background-color: #e8e0d8;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 43, 45, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay span {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 2px solid #B8935A;
    padding-bottom: 3px;
}

/* -----------------------------------------------------------------------------
   16. LIGHTBOX OVERLAY (fancybox overrides)
   ----------------------------------------------------------------------------- */
#fancybox-close {
    right: -35px;
}

.fancybox-overlay {
    background: rgba(0,0,0,0.9);
}

/* -----------------------------------------------------------------------------
   17. CONTACT PAGE
   ----------------------------------------------------------------------------- */
.contact-page {
    padding: 5rem 0;
    background-color: #F9F6F0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Transport Content */
.transport-content-single {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.transport-content-single h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C1810;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(184,147,90,0.25);
}
.transport-content-single h3:first-child { margin-top: 0; }
.transport-content-single p {
    color: #5C4A3A;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.97rem;
}
.transport-content-single a {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(37,211,102,0.3);
    transition: opacity 0.2s;
}
.transport-content-single a:hover { opacity: 0.75; }
.transport-content-single img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    border-radius: 8px;
    margin: 0.5rem 0 1rem;
    display: block;
}

.map-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(44,24,16,0.12);
    border: 1px solid rgba(184,147,90,0.15);
    background: #fff;
}
.map-card__frame {
    position: relative;
}
.map-card__frame iframe {
    display: block;
    width: 100%;
}
.map-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    background: #fff;
    border-top: 1px solid rgba(184,147,90,0.12);
}
.map-card__address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #5C4A3A;
    line-height: 1.4;
}
.map-card__directions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B8935A;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s;
}
.map-card__directions:hover { opacity: 0.75; }

.contact-info__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
}

.contact-info__subtitle {
    color: #7A6A62;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-detail-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(59, 168, 176, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3BA8B0;
}

.contact-detail-item__icon svg {
    width: 18px;
    height: 18px;
}

.contact-detail-item__content {}

.contact-detail-item__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #B8935A;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-item__value {
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #2C1810;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item__value a {
    color: #3BA8B0;
}

.contact-detail-item__value a:hover {
    color: #B8935A;
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 2px;
    display: block;
}

/* -----------------------------------------------------------------------------
   18. CONTACT FORM
   ----------------------------------------------------------------------------- */
.contact-form {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(44, 24, 16, 0.06);
    margin-top: 2rem;
}

.contact-form__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A6A62;
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #B8935A;
    margin-left: 2px;
}

.form-control-modern {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #2C1810;
    background-color: #F9F6F0;
    border: 1px solid #e5ddd6;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-control-modern:focus {
    border-color: #3BA8B0;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(59, 168, 176, 0.12);
}

.form-control-modern::placeholder {
    color: #b8aca4;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 130px;
}

/* -----------------------------------------------------------------------------
   19. BREADCRUMB
   ----------------------------------------------------------------------------- */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
}

.breadcrumb-modern a {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: #B8935A;
}

.breadcrumb-modern__sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.breadcrumb-modern__current {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

/* Inline breadcrumb (light background) */
.breadcrumb-light a {
    color: #7A6A62;
}

.breadcrumb-light .breadcrumb-modern__sep {
    color: #c0b5ad;
}

.breadcrumb-light .breadcrumb-modern__current {
    color: #2C1810;
}

/* -----------------------------------------------------------------------------
   20. ABOUT PAGE
   ----------------------------------------------------------------------------- */
.about-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-content h1,
.about-content h2,
.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C1810;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #7A6A62;
    margin-bottom: 1.25rem;
}

.about-content img {
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(44,24,16,0.1);
}

/* -----------------------------------------------------------------------------
   21. MOBILE RESPONSIVE
   ----------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
    }

    .navbar-top {
        justify-content: center;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    .section-pad--lg {
        padding: 4rem 0;
    }

    .container-modern {
        padding: 0 1.25rem;
    }

    .navbar-inner {
        padding: 0 1.25rem;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .page-hero {
        padding: 4rem 1.25rem 3rem;
    }
}

@media (max-width: 480px) {
    .top-bar__inner {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .fab-whatsapp {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }

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

    .contact-form {
        padding: 1.5rem;
    }
}

/* -----------------------------------------------------------------------------
   22. ANIMATIONS & FADE-IN ON SCROLL
   ----------------------------------------------------------------------------- */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* -----------------------------------------------------------------------------
   23. UTILITY CLASSES
   ----------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-teal  { color: #3BA8B0; }
.text-gold  { color: #B8935A; }
.text-dark  { color: #2C1810; }
.text-muted { color: #7A6A62; }
.text-white { color: #FFFFFF; }

.bg-cream { background-color: #F9F6F0; }
.bg-dark  { background-color: #1C2B2D; }
.bg-white { background-color: #FFFFFF; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* -----------------------------------------------------------------------------
   24. CALLOUT STRIP
   ----------------------------------------------------------------------------- */

/* Ferry Promo Section */
.ferry-promo-section {
    background-color: #F9F6F0;
}
.ferry-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ferry-promo-text .section-heading {
    text-align: left;
    font-size: 2.2rem;
}
.ferry-promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ferry-promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #5C4A3A;
    font-size: 0.95rem;
    line-height: 1.5;
}
.ferry-promo-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8935A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 2px;
}
.ferry-promo-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44,24,16,0.15);
}
.ferry-promo-image img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 900px) {
    .ferry-promo-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ferry-promo-image {
        max-width: 420px;
        margin: 0 auto;
    }
}
.callout-strip {
    background: linear-gradient(135deg, #1C2B2D 0%, #2d4a4d 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.callout-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: #B8935A;
    opacity: 0.5;
}

.callout-strip__eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B8935A;
    display: block;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.callout-strip__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.callout-strip__text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* -----------------------------------------------------------------------------
   SPA DETAIL PAGE
   ----------------------------------------------------------------------------- */
.spa-detail-section {
    padding: 5rem 0;
    background-color: #F9F6F0;
}

.spa-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .spa-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.spa-detail-image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12);
    position: sticky;
    top: 120px;
}

@media (max-width: 900px) {
    .spa-detail-image {
        position: static;
    }
}

.spa-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.spa-detail-content {}

.spa-detail-content .breadcrumb-modern {
    padding-top: 0;
}

.spa-detail-content .breadcrumb-modern a,
.spa-detail-content .breadcrumb-modern__sep,
.spa-detail-content .breadcrumb-modern__current {
    color: #7A6A62;
}

.spa-detail-content .breadcrumb-modern a:hover {
    color: #B8935A;
}

.spa-detail-content .breadcrumb-modern__sep {
    color: #c0b5ad;
}

.spa-detail-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.spa-detail-content .gold-rule {
    width: 50px;
    height: 2px;
    background-color: #B8935A;
    margin: 1rem 0 1.5rem;
}

.spa-detail-content .description-body p {
    font-size: 0.97rem;
    color: #7A6A62;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.spa-detail-content .description-body h2,
.spa-detail-content .description-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C1810;
    margin: 1.5rem 0 0.5rem;
}

.spa-detail-content .description-body ul,
.spa-detail-content .description-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.spa-detail-content .description-body ul li,
.spa-detail-content .description-body ol li {
    color: #7A6A62;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    list-style: disc;
}

/* -----------------------------------------------------------------------------
   EMPTY STATE
   ----------------------------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #7A6A62;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

/* -----------------------------------------------------------------------------
   MENU DESCRIPTION INTRO
   ----------------------------------------------------------------------------- */
.menu-intro {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.menu-intro p {
    font-size: 1rem;
    color: #7A6A62;
    line-height: 1.8;
}

/* -----------------------------------------------------------------------------
   PAGE CONTENT PROSE (about page rich text)
   ----------------------------------------------------------------------------- */
.prose-content {
    font-family: 'Lato', sans-serif;
}

.prose-content p {
    font-size: 1rem;
    color: #7A6A62;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.prose-content h2, .prose-content h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C1810;
    margin: 2rem 0 0.75rem;
}

.prose-content ul, .prose-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose-content li {
    color: #7A6A62;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.prose-content strong {
    color: #2C1810;
}

.prose-content img {
    border-radius: 2px;
    box-shadow: 0 6px 24px rgba(44,24,16,0.1);
    margin: 1.5rem auto;
}

/* -----------------------------------------------------------------------------
   ERROR FILE / ALERT
   ----------------------------------------------------------------------------- */
.alert-danger {
    background-color: #fff0f0;
    border: 1px solid #f5c6cb;
    border-radius: 2px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #721c24;
}

/* Old Bootstrap overrides for compatibility */
.form-control {
    font-family: 'Lato', sans-serif;
    border-radius: 2px;
    border: 1px solid #e5ddd6;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    color: #2C1810;
    background-color: #F9F6F0;
    width: 100%;
    transition: border-color 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #3BA8B0;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(59,168,176,0.12);
}

/* =============================================================================
   SEO DECISION CONTEXT SECTIONS
   ============================================================================= */

/* --- Choose the Perfect Treatment Strip --- */
.treatments-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.treatment-pill {
    background: #FFFFFF;
    border: 1px solid rgba(184,147,90,0.15);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.treatment-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44,24,16,0.1);
    border-color: rgba(184,147,90,0.4);
}

.treatment-pill__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    color: #B8935A;
}

.treatment-pill__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.treatment-pill__desc {
    font-size: 0.78rem;
    color: #7A6A62;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .treatments-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .treatments-strip { grid-template-columns: repeat(2, 1fr); }
}

/* --- Why Choose Grid --- */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-card {
    flex: 0 0 calc(25% - 1.125rem);
}

.why-card {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 20px rgba(44,24,16,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(44,24,16,0.12);
}

.why-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    color: #3BA8B0;
}

.why-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
}

.why-card__text {
    font-size: 0.875rem;
    color: #7A6A62;
    line-height: 1.7;
    margin: 0;
}

/* --- Spa Benefits --- */
.spa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.spa-benefit {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.spa-benefit:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,147,90,0.4);
}

.spa-benefit__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #B8935A;
}

.spa-benefit__label {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .spa-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- How the Visit Works --- */
.how-works-section {
    background-color: #1C2B2D;
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.step-item {
    text-align: center;
    padding: 1.75rem 1.5rem;
    position: relative;
}

.step-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 1px;
    height: 2rem;
    background: rgba(184,147,90,0.3);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(184,147,90,0.7);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    color: #B8935A;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}

.step-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* --- Who Is This For --- */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: #FFFFFF;
    border: 1.5px solid rgba(184,147,90,0.3);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5C4A3A;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

.audience-tag:hover {
    background: #B8935A;
    color: #FFFFFF;
    border-color: #B8935A;
}

/* --- What to Book --- */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.booking-card {
    display: block;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 1.75rem 1.5rem;
    border-top: 3px solid #B8935A;
    box-shadow: 0 2px 20px rgba(44,24,16,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(44,24,16,0.12);
}

.booking-card__occasion {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8935A;
    margin-bottom: 0.4rem;
    display: block;
}

.booking-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.booking-card__text {
    font-size: 0.85rem;
    color: #7A6A62;
    line-height: 1.7;
    margin: 0;
}

/* --- Why Singapore Travelers Trust --- */
.trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-layout__img {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
}

.trust-layout__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 500;
    color: #1C2B2D;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.trust-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #3a4a4c;
    line-height: 1.5;
}

.trust-list__item--highlight {
    font-size: 1rem;
    color: #1C2B2D;
}

.trust-list__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #B8935A;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .trust-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .trust-layout__img { height: 240px; }
}

/* --- FAQ Accordion --- */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(28,43,45,0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(28,43,45,0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #1C2B2D;
    font-weight: 600;
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #B8935A;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #5a6a6c;
    line-height: 1.7;
    padding-bottom: 1.1rem;
    margin: 0;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

/* --- Location Section --- */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.location-layout__map {
    min-height: 340px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(28,43,45,0.12);
}

.location-address-block {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #F9F6F0;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.location-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-list__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    color: #3a4a4c;
}

@media (max-width: 768px) {
    .location-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .location-layout__map { min-height: 260px; }
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tcard {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(28,43,45,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tcard:hover {
    box-shadow: 0 6px 28px rgba(28,43,45,0.14);
    transform: translateY(-3px);
}

.tcard__stars {
    padding: 1.25rem 1.25rem 0;
    font-size: 1rem;
    color: #B8935A;
    letter-spacing: 0.05em;
}

.tcard__quote {
    padding: 0.75rem 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #3a4a4c;
    flex: 1;
    font-style: italic;
    margin: 0;
}

.tcard__footer {
    padding: 0 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tcard__name {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1C2B2D;
}

.tcard__tag {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #3BA8B0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tcard__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 82%;
    display: block;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .tcard__img { height: 220px; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .why-card { flex: 0 0 calc(33.333% - 1rem); }
    .booking-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-card { flex: 0 0 calc(50% - 0.75rem); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-grid { grid-template-columns: repeat(2, 1fr); }
    .step-item:not(:nth-child(3n))::after { display: none; }
    .step-item:not(:nth-child(2n))::after {
        content: '';
        position: absolute;
        top: 2.5rem;
        right: 0;
        width: 1px;
        height: 2rem;
        background: rgba(184,147,90,0.3);
        display: block;
    }
}

@media (max-width: 520px) {
    .why-card { flex: 0 0 100%; }
    .steps-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .step-item::after { display: none !important; }
}
