/* Oasis Thai Massage & Spa — brand: logo yellow + logo blue */
:root {
    --primary: #F5DC00;
    --primary-bright: #FDEE00;
    --primary-dark: #C9AE00;
    --primary-light: #FFF8B8;
    --secondary: #205493;
    --secondary-light: #2d6cb5;
    --secondary-dark: #183d6e;
    --accent: #F5DC00;
    --text: #205493;
    --text-muted: #4a6a8a;
    --bg: #FFFFFF;
    --bg-soft: #F5F8FC;
    --bg-warm: #FFFCF0;
    --border: #D6E4F0;
    --shadow: 0 8px 30px rgba(32, 84, 147, 0.1);
    --shadow-lg: 0 16px 48px rgba(32, 84, 147, 0.14);
    --radius: 16px;
    --radius-lg: 24px;
    --nav-height: 72px;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

body.has-location-banner { padding-top: calc(var(--nav-height) + 42px); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
}

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

a { color: var(--secondary); }

a:hover { color: var(--secondary-dark); }

/* ── Navigation ── */
.site-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    padding: 0.65rem 0;
    min-height: var(--nav-height);
}

.site-nav .navbar-brand img { max-height: 44px; width: auto; }

.site-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--secondary);
    background: var(--primary-light);
}

.site-nav .btn-book {
    background: var(--primary);
    color: var(--secondary) !important;
    border-radius: 50px;
    padding: 0.55rem 1.35rem !important;
    font-weight: 700;
    margin-left: 0.5rem;
    border: 2px solid var(--primary);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.site-nav .btn-book:hover {
    background: var(--primary-bright);
    border-color: var(--primary-bright);
    color: var(--secondary-dark) !important;
    transform: translateY(-1px);
}

/* ── Location banner ── */
.location-banner {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 1020;
    background: var(--secondary);
    color: #fff;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary);
}

.location-banner a {
    color: var(--primary-bright);
    font-weight: 600;
    text-decoration: none;
}

.location-banner a:hover { color: #fff; }

/* ── Buttons ── */
.btn-primary-custom {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 0.7rem 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--primary-bright);
    border-color: var(--primary-bright);
    color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 220, 0, 0.45);
}

.btn-outline-gold {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline-gold:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* ── Page hero (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(var(--nav-height) + 2.5rem);
}

body.has-location-banner .page-hero {
    margin-top: calc(-1 * var(--nav-height) - 42px);
    padding-top: calc(var(--nav-height) + 42px + 2.5rem);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero .badge-location {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.breadcrumb-nav {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.breadcrumb-nav a { color: var(--primary-bright); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fff; }

/* ── Home hero ── */
.hero-section {
    background:
        linear-gradient(135deg, rgba(32, 84, 147, 0.82) 0%, rgba(24, 61, 110, 0.78) 100%),
        url('../images/pexels-asadphoto-3601450.jpg') center/cover no-repeat;
    color: #fff;
    padding: 4rem 0;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(var(--nav-height) + 3rem);
    position: relative;
}

body.has-location-banner .hero-section {
    margin-top: calc(-1 * var(--nav-height) - 42px);
    padding-top: calc(var(--nav-height) + 42px + 3rem);
}

.hero-section h1, .hero-section h2,
.hero-section .lead, .hero-section p { color: #fff; }

.hero-section .text-primary-custom { color: var(--primary-bright) !important; }

.hero-section .btn-outline-dark {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.hero-section .btn-outline-dark:hover {
    background: #fff;
    color: var(--secondary);
}

.btn-call {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--secondary);
    padding: 0.7rem 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
}

.btn-call:hover {
    background: var(--primary-bright);
    border-color: var(--primary-bright);
    color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 220, 0, 0.45);
}

.btn-call-nav {
    background: transparent;
    border: 2px solid var(--secondary) !important;
    color: var(--secondary) !important;
    border-radius: 50px;
    padding: 0.45rem 1.1rem !important;
    font-weight: 600;
    margin-left: 0.35rem;
    white-space: nowrap;
}

.btn-call-nav:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--secondary) !important;
}

/* Floating click-to-call (mobile-friendly) */
.call-fab {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: var(--primary-bright);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 28px rgba(32, 84, 147, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.call-fab:hover {
    background: var(--secondary-dark);
    color: var(--primary-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(32, 84, 147, 0.5);
}

.call-fab svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .call-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* ── Sections ── */
.section-padding { padding: 4.5rem 0; }

.bg-light, .bg-soft { background: var(--bg-soft) !important; }

.bg-warm { background: var(--bg-warm) !important; }

.text-primary-custom { color: var(--secondary) !important; }

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.section-title .lead {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Cards ── */
.service-card,
.location-card-inline,
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
    box-shadow: var(--shadow);
}

.service-card:hover,
.location-card-inline:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.2rem 0;
}

/* Location cards on locations page */
.location-card-inline {
    border-top: 4px solid var(--primary);
}

.location-card-inline.manhattan { border-top-color: var(--secondary); }
.location-card-inline.redondo { border-top-color: var(--primary-dark); }

.location-card-inline .loc-number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.location-card-inline.manhattan .loc-number { background: var(--secondary); color: var(--primary-bright); }
.location-card-inline.redondo .loc-number { background: var(--primary); color: var(--secondary); }

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff;
    padding: 4rem 0;
}

.cta-band h2 { color: #fff; }

.cta-band .lead { color: rgba(255,255,255,0.9); }

.cta-band .btn-light {
    border-radius: 50px;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.cta-band .btn-light:hover {
    background: var(--primary-bright);
    border-color: var(--primary-bright);
    color: var(--secondary-dark);
}

.cta-band .btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    border-color: var(--primary);
    color: var(--primary-bright);
}

.cta-band .btn-outline-light:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* ── FAQ accordion ── */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: none;
}

.accordion-button {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    color: var(--text);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-soft);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(245, 220, 0, 0.35);
}

.accordion-body {
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Contact / info cards ── */
.info-card {
    text-align: center;
}

.info-card .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.88);
    padding: 4rem 0 1.5rem;
}

.site-footer h5 {
    color: var(--primary-bright);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.site-footer p { font-size: 0.95rem; line-height: 1.7; }

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover { color: var(--primary-bright); }

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer ul li { margin-bottom: 0.5rem; }

.site-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1.5rem;
}

.site-footer .copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ── Service detail ── */
.service-detail-hero {
    padding-top: 1rem;
}

.feature-list li {
    padding: 0.4rem 0;
    color: var(--text-muted);
}

.feature-list li::marker { color: var(--primary); }

/* ── Utilities ── */
.two-locations-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.gap-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 991px) {
    body { padding-top: 64px; --nav-height: 64px; }

    .site-nav .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        box-shadow: var(--shadow);
    }

    .site-nav .btn-book {
        margin: 0.5rem 0 0;
        display: inline-block;
        text-align: center;
    }

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

    .service-card, .location-card-inline { padding: 1.5rem; }
}

@media (max-width: 576px) {
    .page-hero { padding-top: calc(var(--nav-height) + 1.5rem); }
    .hero-section { padding: 2.5rem 0; }
}

/* ── Location gate (index.html) ── */
body.gate-page {
    padding-top: 0;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(32, 84, 147, 0.84) 0%, rgba(24, 61, 110, 0.8) 100%),
        url('../images/pexels-asadphoto-3601450.jpg') center/cover no-repeat fixed;
    color: #fff;
}

.location-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.gate-header { text-align: center; margin-bottom: 2.5rem; }

.gate-header img { max-height: 80px; margin: 0 auto 1rem; }

.gate-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gate-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.gate-header .two-locations-badge {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
}

.location-gate .location-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-gate .location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.location-gate .location-card.manhattan { border-top-color: var(--secondary); }
.location-gate .location-card.redondo { border-top-color: var(--primary-dark); }

.location-gate .location-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.location-gate .location-card.manhattan .location-number { background: var(--secondary); color: var(--primary-bright); }
.location-gate .location-card.redondo .location-number { background: var(--primary); color: var(--secondary); }

.location-gate .city-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--text);
}

.location-gate .phone {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.75rem 0;
}

.location-gate .phone a { color: inherit; text-decoration: none; }

.location-gate .address,
.location-gate .hours {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.location-gate .hours {
    background: var(--bg-soft);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: var(--text);
}

.location-gate .card-actions {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.location-gate .secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-gate .btn-outline-light-custom {
    border: 2px solid var(--border);
    color: var(--text);
    padding: 0.55rem 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.location-gate .btn-outline-light-custom:hover {
    border-color: var(--primary);
    background: var(--bg-soft);
}

.location-gate .btn-call-card {
    background: var(--secondary);
    border: 2px solid var(--secondary);
    color: var(--primary-bright);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.location-gate .btn-call-card:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--primary-bright);
    transform: translateY(-1px);
}

.gate-footer-links {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.gate-footer-links a {
    color: var(--primary-bright);
    text-decoration: none;
    font-weight: 500;
}

.gate-footer-links a:hover { color: #fff; }

/* ── 404 page ── */
.error-section {
    padding: 4rem 0;
    text-align: center;
}

.error-content { max-width: 640px; margin: 0 auto; }

.error-code {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 700;
    color: var(--primary-bright);
    line-height: 1;
    margin-bottom: 1rem;
}
