/* =============================================================================
   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;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background-color: #F9F6F0;
    color: #2C1810;
    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;
}

.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 {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    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: #B8935A;
    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: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.9s;
}

.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;
}

.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: 1.75rem;
    align-items: start;
}

@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;
    min-height: 380px;
}

.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--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
   ----------------------------------------------------------------------------- */
.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;
    }
}

.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
   ----------------------------------------------------------------------------- */
.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: 100px;
}

.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);
}
