/* ============================================
   Issan Thai Massage — Modern Design System
   Jade Green + Warm Copper Accent
   ============================================ */

:root {
    --primary: #2C7A5C;
    --primary-dark: #1F5C44;
    --primary-light: #4A9D7A;
    --primary-glow: rgba(44, 122, 92, 0.18);
    --secondary: #0F2A20;
    --accent: #C97B3A;
    --accent-dark: #A56028;
    --accent-light: #E8B388;
    --gold: #D4A256;
    --cream: #FAF6EE;
    --cream-dark: #F0EAE0;
    --white: #FFFFFF;
    --text: #1F2D26;
    --text-light: #5C6B64;
    --text-muted: #8A9690;
    --border: #E1DCD0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Shared ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
}
.btn-service:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--secondary);
    color: var(--accent);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease;
}
.announcement-bar p { margin: 0; }
.announcement-bar a { color: var(--primary-light); font-weight: 600; text-decoration: underline; }
.announcement-bar a:hover { color: var(--white); }
.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    top: 0;
    background: rgba(251, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}
.logo-icon {
    font-size: 1.6rem;
    color: var(--primary-light);
    transition: var(--transition);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.navbar.scrolled .logo-icon { color: var(--primary); }
.footer-logo .logo-icon { width: 32px; height: 32px; }

/* Real logo image */
.logo-img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}
.navbar.scrolled .logo-img {
    height: 46px;
    filter: none;
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(1.05);
}
.logo-name {
    display: none;
}
.logo-tagline {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    font-weight: 500;
    margin-left: 6px;
    border-left: 1px solid rgba(255,255,255,0.4);
    padding-left: 12px;
}
.navbar.scrolled .logo-tagline {
    color: var(--text-light);
    border-left-color: var(--border);
}
@media (max-width: 600px) {
    .logo-tagline { display: none; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--primary-light); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    z-index: 100;
    border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 0.85rem;
}
.dropdown-menu a:hover { background: var(--accent-light); color: var(--primary) !important; }

.nav-phone a {
    color: var(--primary-light) !important;
    font-weight: 600;
}
.navbar.scrolled .nav-phone a { color: var(--primary) !important; }

.btn-book-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}
.btn-book-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.phone-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
}
.navbar.scrolled .phone-link { background: var(--accent); color: var(--primary); }
.mobile-book { font-size: 0.8rem; padding: 8px 16px !important; }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .hamburger span { background: var(--secondary); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        align-items: stretch;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text) !important; padding: 12px 16px; font-size: 0.95rem; }
    .nav-links a:hover { background: var(--accent-light); color: var(--primary) !important; }
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        display: none;
        background: transparent;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-actions { display: flex; }
    .nav-phone { display: none; }
    .nav-cta { display: none; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/img/hero-bg.png') center/cover no-repeat;
    z-index: 0;
    animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.15) translateY(-1.5%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(44, 122, 92, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(15, 42, 32, 0.55) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(15, 42, 32, 0.55) 0%,
            rgba(15, 42, 32, 0.45) 50%,
            rgba(15, 42, 32, 0.78) 100%
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(212, 162, 86, 0.18);
    border: 1px solid rgba(212, 162, 86, 0.45);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: -0.5px;
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--primary-light);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}
.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 16px 36px;
    font-size: 0.95rem;
}
.hero .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    padding: 16px 36px;
    font-size: 0.95rem;
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}
.hero-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}
.hero-info-item i { color: var(--primary-light); }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}
.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}
.trust-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 350px; }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.service-card-body {
    padding: 28px;
}
.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.service-pricing {
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.88rem;
}
.price-row .price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}
.service-addon {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.service-addon i { color: var(--primary); margin-right: 4px; }

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

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: var(--transition);
}
.gallery-item:hover::after {
    background: rgba(0,0,0,0.2);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-large { grid-column: span 2; }
.gallery-large img { height: 320px; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-large { grid-column: span 2; }
    .gallery-item img { height: 200px; }
    .gallery-large img { height: 220px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large { grid-column: span 1; }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--cream);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    margin-bottom: 16px;
    color: #F5A623;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}
.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 147, 63, 0.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ============================================
   Locations Section
   ============================================ */
.locations-section {
    padding: 100px 0;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.location-single {
    max-width: 640px;
    margin: 0 auto;
}
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.location-card:hover {
    box-shadow: var(--shadow-md);
}
.location-info {
    padding: 32px;
}
.new-badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.location-info h3 i { color: var(--primary); margin-right: 6px; font-size: 1.2rem; }
.location-details p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}
.location-details i {
    color: var(--primary);
    width: 18px;
    margin-right: 8px;
}
.location-details a { color: var(--primary); font-weight: 500; }
.location-details a:hover { text-decoration: underline; }
.location-hours {
    margin: 20px 0;
    padding: 16px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
}
.location-hours h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.location-hours h4 i { margin-right: 6px; color: var(--primary); }
.hours-grid {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

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

/* ============================================
   Booking Section
   ============================================ */
.booking-section {
    padding: 100px 0;
    background: var(--white);
}
.booking-widget {
    max-width: 900px;
    margin: 0 auto 30px;
    min-height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
    position: relative;
}
.booking-widget iframe {
    width: 100%;
    height: 700px;
    border: none;
}
.booking-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-fallback {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}
.booking-phones {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--cream);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { color: var(--primary); }
.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
}
.footer-logo .logo-icon { color: var(--primary-light); }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    opacity: 0.7;
}
.footer-links a:hover { opacity: 1; color: var(--primary-light); }
.footer-location {
    margin-bottom: 16px;
}
.footer-location strong {
    color: var(--white);
    font-size: 0.88rem;
    display: block;
    margin-bottom: 4px;
}
.footer-location p {
    font-size: 0.82rem;
    margin-bottom: 2px;
}
.footer-location a {
    color: var(--primary-light);
    font-size: 0.88rem;
    font-weight: 500;
}
.footer-email { margin-top: 16px; }
.footer-email a {
    color: var(--primary-light);
    font-size: 0.88rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.82rem;
}
.footer-credit a { color: var(--primary-light); font-weight: 500; }
.footer-credit a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Mobile Sticky Bar
   ============================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 0;
}
.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    font-size: 0.9rem;
}
.sticky-call { color: var(--text); background: var(--white); }
.sticky-book { color: var(--white); background: var(--primary); }

@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    .footer { padding-bottom: 80px; }
}

/* ============================================
   Booking Modal
   ============================================ */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.booking-modal.active { display: flex; }
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 85vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: rgba(0,0,0,0.06);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}
.booking-modal-iframe-wrap {
    width: 100%;
    height: 100%;
}
.booking-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

@media (min-width: 769px) {
    .back-to-top { bottom: 30px; }
}

/* ============================================
   Loading Skeleton
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   Utility
   ============================================ */
.text-center { text-align: center; }

@media (max-width: 768px) {
    .about-section, .services-section, .neighborhoods-section,
    .gallery-section, .reviews-section, .cta-section,
    .locations-section, .booking-section, .faq-section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
}

/* ============================================
   SenseBS — Service Pricing Tier Rows
   ============================================ */
.price-row-clickable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin: 4px 0;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    background: var(--cream);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.price-row-clickable:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(2px);
}
.price-original {
    text-decoration: line-through;
    color: #888;
    font-weight: 400;
    margin-right: 6px;
    font-size: 0.85em;
}
.price-suffix {
    font-size: 0.7em;
    color: #888;
    font-weight: 400;
    margin-left: 4px;
}

/* ============================================
   Booking Iframe Wrap (Safari iOS)
   ============================================ */
.booking-iframe-wrap {
    width: 100%;
    height: 100%;
    min-height: 700px;
    border-radius: var(--radius-lg);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
}
.booking-widget {
    -webkit-overflow-scrolling: touch;
}
.booking-modal-iframe-wrap {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

/* (Old conflicting promo-popup block was removed in favor of the
   canonical block under "Promotions Popup (driven by /api/promotions)" further below.) */

/* ============================================
   Promotion — Banner (TOP/BOTTOM)
   ============================================ */
.promo-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.promo-banner.pos-top { top: 0; }
.promo-banner.pos-bottom { bottom: 0; }
.promo-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-banner-text {
    font-size: 0.9rem;
}
.promo-banner-cta {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
}
.promo-banner-cta:hover { background: rgba(255,255,255,0.3); }
.promo-banner-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}
.promo-banner-close:hover { opacity: 1; }

/* ============================================
   Promotion — Slide-In / Floating
   ============================================ */
.promo-slidein {
    position: fixed;
    z-index: 9500;
    width: 320px;
    max-width: calc(100vw - 32px);
    padding: 22px 22px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    transform: translateX(120%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-slidein.open { transform: translateX(0); }
.promo-slidein.pos-bottom-right { bottom: 24px; right: 24px; }
.promo-slidein.pos-bottom-left { bottom: 24px; left: 24px; transform: translateX(-120%); }
.promo-slidein.pos-bottom-left.open { transform: translateX(0); }
.promo-slidein.pos-top-right { top: 80px; right: 24px; }
.promo-slidein.pos-top-left { top: 80px; left: 24px; transform: translateX(-120%); }
.promo-slidein.pos-top-left.open { transform: translateX(0); }
.promo-slidein strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.promo-slidein p {
    margin: 0 0 12px;
    font-size: 0.9rem;
    opacity: 0.85;
}
.promo-slidein-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}
.promo-slidein-close:hover { opacity: 1; }

@media (max-width: 600px) {
    .promo-slidein {
        left: 16px !important;
        right: 16px !important;
        width: auto;
        bottom: 16px;
        top: auto;
        transform: translateY(120%);
    }
    .promo-slidein.open { transform: translateY(0); }
}

/* ============================================
   Standalone Page (Gift Cards / Privacy / Terms)
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 3rem;
    margin: 0 0 12px;
    color: var(--primary);
}
.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-light, #666);
}
.page-section {
    padding: 60px 0 100px;
}
.page-section .container {
    max-width: 880px;
}
.page-section h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    margin: 36px 0 14px;
    color: var(--primary);
}
.page-section h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
    color: var(--text);
}
.page-section p, .page-section li {
    line-height: 1.7;
    color: var(--text);
    font-size: 0.96rem;
}
.page-section ul, .page-section ol {
    padding-left: 22px;
    margin: 12px 0;
}
.page-section li { margin-bottom: 6px; }
.page-section .meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 24px;
}
.page-widget-wrap {
    margin: 32px auto;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    background: var(--cream);
}
.page-widget-wrap iframe {
    width: 100%;
    min-height: 720px;
    border: none;
    display: block;
}

/* ============================================
   Hero — Trust Strip + 3-Button CTA
   ============================================ */
.hero-buttons-3 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 30px;
}
.hero-buttons-3 .btn {
    flex: 0 1 auto;
    min-width: 160px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    justify-content: center;
    margin-top: 18px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
}
.hero-trust-emoji {
    font-size: 1.05em;
    line-height: 1;
}
@media (max-width: 768px) {
    .hero-trust {
        gap: 10px 16px;
        padding: 14px 18px;
        border-radius: 18px;
    }
    .hero-trust-item {
        font-size: 0.82rem;
    }
    .hero-buttons-3 .btn {
        min-width: 0;
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* ============================================
   Neighborhoods / Local SEO Section
   ============================================ */
.neighborhoods-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 50px 0 30px;
}
.neighborhood-card {
    background: var(--white);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.neighborhood-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    margin: 0 0 12px;
    color: var(--primary);
}
.neighborhood-card h3 i {
    color: var(--primary);
    font-size: 0.85em;
}
.neighborhood-card p {
    margin: 0;
    line-height: 1.65;
    font-size: 0.94rem;
    color: var(--text);
}
.neighborhoods-also {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light, #666);
    font-size: 0.95rem;
    line-height: 1.7;
}
.neighborhoods-also a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.neighborhoods-also a:hover {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .neighborhoods-section {
        padding: 70px 0;
    }
    .neighborhood-card {
        padding: 22px 20px;
    }
}

/* ============================================
   Booking Modal — Loader Spinner
   ============================================ */
.booking-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    gap: 14px;
    background: var(--cream);
}
.booking-loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(0,0,0,0.08);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: bookingSpin 0.9s linear infinite;
}
.booking-loader-text {
    font-size: 0.9rem;
    color: var(--text-light, #888);
    letter-spacing: 0.4px;
}
@keyframes bookingSpin {
    to { transform: rotate(360deg); }
}

/* Booking modal: wider on desktop for embedded widget */
@media (min-width: 769px) {
    .booking-modal-content {
        max-width: 720px !important;
    }
}

/* ============================================
   Promo Popup — refined (countdown, schedule)
   ============================================ */
.promo-popup-schedule {
    margin: 8px 0;
    padding: 8px 14px;
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-block;
}
.promo-popup-cta {
    border: none;
    cursor: pointer;
    margin-top: 12px;
}

/* ============================================
   ISSAN — Custom Sections (Team, Why, Stats, Booking, Modal)
   ============================================ */

/* About image accent + badge */
.about-image { position: relative; }
.about-image-accent {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.7;
}
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: -28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 4px solid var(--white);
}
.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.about-badge-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 600;
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
}

/* ---- Team Section ---- */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}
.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(44,122,92,0.04) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(201,123,58,0.04) 0%, transparent 30%);
    pointer-events: none;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.team-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover .team-photo img {
    transform: scale(1.08);
}
.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 42, 32, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.team-specialties span {
    background: rgba(212, 162, 86, 0.95);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}
.team-info {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--secondary);
}
.team-title {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-bio {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.team-availability {
    background: var(--cream);
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border-left: 3px solid var(--accent);
}
.team-info .btn {
    align-self: flex-start;
}

/* ---- Why-Choose-Us Section ---- */
.why-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--secondary) 0%, #1a3d2f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 162, 86, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 157, 122, 0.12) 0%, transparent 40%);
}
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.75); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
}
.why-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(212, 162, 86, 0.4);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(201, 123, 58, 0.35);
}
.why-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- Stats Section ---- */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(212, 162, 86, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(212, 162, 86, 0.10) 0%, transparent 30%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
    position: relative;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ---- Reviews CTA bar ---- */
.reviews-cta {
    margin-top: 48px;
    text-align: center;
}
.reviews-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--gold);
}
.rating-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1;
}
.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 8px 0;
    letter-spacing: 4px;
}
.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- Booking Options Cards ---- */
.booking-card-wrap { max-width: 1100px; margin: 0 auto; }
.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.booking-option {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.booking-option:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.booking-option-featured {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    border-color: var(--primary);
    transform: scale(1.04);
}
.booking-option-featured:hover { transform: scale(1.04) translateY(-6px); }
.booking-option-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(201, 123, 58, 0.4);
}
.booking-option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px var(--primary-glow);
}
.booking-option h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.booking-option p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ---- Booking Modal Form ---- */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 32, 0.75);
    backdrop-filter: blur(6px);
}
.booking-modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 600px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 1.6rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.booking-modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}
.booking-modal-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.booking-modal-header h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--secondary);
}
.booking-modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.booking-form .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.booking-form .form-row .form-group { margin-bottom: 0; }
.booking-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.btn-full { width: 100%; margin-top: 8px; }
.booking-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}
.booking-fineprint a {
    color: var(--primary);
    font-weight: 600;
}
.booking-success {
    text-align: center;
    padding: 30px 10px;
}
.booking-success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 18px;
    animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.booking-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.booking-success p { color: var(--text-light); margin-bottom: 22px; }

/* ---- Mobile tweaks ---- */
@media (max-width: 768px) {
    .about-image-badge {
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px 22px;
    }
    .about-badge-num { font-size: 2rem; }
    .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form .form-row .form-group { margin-bottom: 16px; }
    .booking-modal-content { padding: 28px 20px; }
    .booking-option-featured { transform: none; }
    .booking-option-featured:hover { transform: translateY(-6px); }
    .team-photo { height: 280px; }
    .team-section, .why-section { padding: 70px 0; }
}

/* ---- Mobile hero spacing fix ---- */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 110px;
        padding-bottom: 60px;
        align-items: flex-start;
    }
    .hero-content { padding-top: 24px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 16px; letter-spacing: 1.5px; }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); margin-bottom: 12px; line-height: 1.15; }
    .hero-tagline { font-size: 1rem; margin-bottom: 24px; }
    .hero-buttons-3 { flex-direction: column; gap: 10px; align-items: center; }
    .hero-buttons-3 .btn { width: 100%; max-width: 320px; }
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
        padding: 16px;
    }
    .hero-trust-item { font-size: 0.85rem; }
    .hero-scroll { display: none; }
    .navbar .logo-tagline { font-size: 0.62rem; }
    .navbar .logo-name { font-size: 0.95rem; }
}

/* ---- Announcement bar responsive ---- */
.announcement-bar .ann-short { display: none; }
@media (max-width: 768px) {
    .announcement-bar .ann-full { display: none; }
    .announcement-bar .ann-short { display: inline; }
    .announcement-bar p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.78rem;
    }
}

/* ============================================
   ISSAN — Philosophy / Blog / Contact Sections
   ============================================ */

/* ---- Philosophy ---- */
.philosophy-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}
.philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 162, 86, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.philosophy-content p {
    color: var(--text-light);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.75;
}
.philosophy-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem !important;
    color: var(--primary-dark) !important;
    border-left: 3px solid var(--accent);
    padding: 12px 0 12px 24px;
    margin-top: 22px !important;
    line-height: 1.5 !important;
}
.philosophy-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.pillar {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.pillar:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.pillar i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px var(--primary-glow);
}
.pillar strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 4px;
}
.pillar span {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ---- Blog ---- */
.blog-section {
    padding: 100px 0;
    background: var(--cream);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(201, 123, 58, 0.35);
}
.blog-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 14px;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 12px;
    font-weight: 500;
}
.blog-meta i { margin-right: 4px; color: var(--primary); }
.blog-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--secondary);
}
.blog-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.blog-readmore {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-readmore i { transition: transform 0.3s; }
.blog-readmore:hover { color: var(--accent); }
.blog-readmore:hover i { transform: translateX(4px); }

/* ---- Contact ---- */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--primary-glow);
}
.contact-card h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--secondary);
}
.contact-card a {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-card a:hover { color: var(--accent); }
.contact-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.contact-form .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.contact-form .form-row .form-group { margin-bottom: 0; }
.contact-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.contact-fineprint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}
.contact-fineprint a {
    color: var(--primary);
    font-weight: 600;
}
.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 18px;
    animation: pulse 1.4s ease infinite;
}
.contact-success h3 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-success p { color: var(--text-light); }

/* ---- Mobile ---- */
@media (max-width: 900px) {
    .philosophy-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .philosophy-section, .blog-section, .contact-section { padding: 70px 0; }
}
@media (max-width: 600px) {
    .contact-form { padding: 24px 20px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form .form-row .form-group { margin-bottom: 16px; }
}

/* ==========================================================
   SenseBS Live Booking Widget Modal (wide, iframe-based)
   ========================================================== */
.booking-modal-content--widget {
    max-width: 1100px !important;
    width: 96vw;
    max-height: 94vh;
    padding: 28px 28px 18px !important;
    display: flex;
    flex-direction: column;
}
.booking-modal-content--widget .booking-modal-header {
    margin-bottom: 16px !important;
    padding-bottom: 14px !important;
}
.booking-modal-content--widget .booking-modal-iframe-wrap {
    flex: 1 1 auto;
    width: 100%;
    min-height: 60vh;
    height: 70vh;
    overflow: auto;
    border-radius: 12px;
    background: var(--cream);
    -webkit-overflow-scrolling: touch;
    position: relative;
}
.booking-modal-content--widget .booking-modal-iframe-wrap::before {
    content: "Loading booking…";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
    z-index: 0;
    pointer-events: none;
}
.booking-modal-content--widget .booking-modal-iframe-wrap iframe {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 60vh;
    border: 0;
    display: block;
    background: transparent;
}
.booking-modal-content--widget .booking-fineprint {
    text-align: center;
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.booking-modal-content--widget .booking-fineprint a { color: var(--primary); text-decoration: none; }

@media (max-width: 768px) {
    .booking-modal { padding: 0 !important; }
    .booking-modal-content--widget {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 100vh !important;
        height: 100vh;
        border-radius: 0 !important;
        padding: 18px 14px 12px !important;
    }
    .booking-modal-content--widget .booking-modal-iframe-wrap {
        height: calc(100vh - 160px);
        min-height: 0;
    }
}

/* ==========================================================
   Promotions Popup (driven by /api/promotions)
   ========================================================== */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 42, 32, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.promo-popup-overlay.show { opacity: 1; }

.promo-popup {
    position: relative;
    background: var(--white);
    color: var(--text);
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    flex-direction: column;
}
.promo-popup-overlay.show .promo-popup { transform: scale(1) translateY(0); }

.promo-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.92);
    color: var(--secondary);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
}
.promo-popup-close:hover { background: #fff; transform: scale(1.05); }

.promo-popup-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}
.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-popup-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.promo-popup-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    align-self: center;
    margin: 0;
}
.promo-popup-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.7rem;
    margin: 0;
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 600;
}
.promo-popup-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 340px;
}
.promo-popup-timer {
    font-size: 0.82rem;
    color: var(--accent-dark, #b56a2e);
    background: rgba(201, 123, 58, 0.12);
    padding: 7px 14px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin: 0;
}
.promo-popup-code {
    background: var(--cream);
    border: 1px dashed var(--border);
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
    width: 100%;
    margin: 4px 0 0;
}
.promo-popup-code strong { color: var(--secondary); letter-spacing: 1px; }
.promo-popup-copy {
    background: var(--primary);
    color: #fff;
    border: 0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.promo-popup-copy:hover { background: var(--primary-dark); }
.promo-popup-cta {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    transition: all 0.2s;
    margin-top: 4px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.promo-popup-cta::after {
    content: '→';
    transition: transform 0.2s;
}
.promo-popup-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(44, 122, 92, 0.3);
}
.promo-popup-cta:hover::after { transform: translateX(3px); }

/* Variant: when no image, give the body more breathing room at the top */
.promo-popup:not(:has(.promo-popup-image)) .promo-popup-body {
    padding-top: 36px;
}

@media (max-width: 480px) {
    .promo-popup { max-width: 92vw; border-radius: 16px; }
    .promo-popup-image { height: 170px; }
    .promo-popup-body { padding: 22px 22px 24px; gap: 10px; }
    .promo-popup-title { font-size: 1.45rem; }
    .promo-popup-desc { font-size: 0.9rem; }
}

/* ==========================================================
   Promotions Banner (top/bottom bar)
   ========================================================== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    z-index: 9998;
    padding: 10px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    animation: slideDownBanner 0.4s ease;
}
.promo-banner-bottom { top: auto; bottom: 0; }
@keyframes slideDownBanner {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.promo-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.promo-banner-cta {
    background: #fff;
    color: var(--primary);
    border: 0;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.promo-banner-cta:hover { transform: translateY(-1px); }
.promo-banner-close {
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    padding: 0 4px;
}
.promo-banner-close:hover { opacity: 1; }

/* Footer email link */
.footer-email-link {
    display: block;
    color: var(--cream-dark, #f0eae0);
    margin-top: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-email-link:hover { color: var(--accent-light, #E8B388); }

/* ==========================================================
   Dynamic SenseBS Service Cards (replaces static grid)
   Pattern inspired by thaiaromabodywork.com
   ========================================================== */
.bs-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 36px;
    padding: 0 12px;
    max-width: 900px;
}
.bs-cat-pill {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border);
    padding: 9px 20px;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.bs-cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}
.bs-cat-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.bs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 0;
}

.bs-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,0.06));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.bs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(15, 42, 32, 0.14);
    border-color: var(--primary-light);
}
.bs-service-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-dark, #f0eae0);
}
.bs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.bs-service-card:hover .bs-service-image img {
    transform: scale(1.06);
}
.bs-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.bs-service-body {
    padding: 24px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bs-service-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--secondary);
    line-height: 1.25;
}
.bs-service-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1;
}
.bs-variants-label {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}
.bs-variants {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}
.bs-variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.bs-variant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bs-variant-duration {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.2;
}
.bs-variant-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    line-height: 1.2;
}
.bs-variant-price .bs-price {
    font-size: 1.05rem;
}
.bs-variant-price .bs-price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 4px;
    font-weight: 500;
}
.bs-variant-price .bs-per {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    margin-left: 4px;
}
.bs-variant-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.18s;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
}
.bs-btn-ghost {
    background: transparent;
    color: var(--secondary);
    border-color: var(--border);
}
.bs-btn-ghost:hover {
    background: var(--cream);
    border-color: var(--secondary);
    color: var(--secondary);
}
.bs-btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.bs-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 122, 92, 0.25);
}
@media (max-width: 480px) {
    .bs-variant-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .bs-variant-actions {
        width: 100%;
        justify-content: stretch;
    }
    .bs-variant-actions .bs-btn {
        flex: 1;
    }
}

.bs-live-note {
    text-align: center;
    margin-top: 36px;
    color: var(--text-light);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.bs-live-note i {
    color: var(--primary);
    background: var(--primary-glow);
    padding: 6px;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

@media (max-width: 600px) {
    .bs-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .bs-service-body { padding: 20px 18px 18px; }
    .bs-cat-pill { padding: 8px 16px; font-size: 0.82rem; }
}

/* ==========================================================
   Multi-page Nav: active state + nav CTA button
   ========================================================== */
.nav-links a.active {
    color: var(--primary) !important;
    font-weight: 700;
    position: relative;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.btn-book-nav {
    padding: 9px 18px !important;
    font-size: 0.88rem !important;
    border-radius: 8px !important;
}
.btn-book-nav i { margin-right: 6px; }

/* ==========================================================
   Page Hero (smaller, used on inner pages)
   ========================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 162, 86, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(74, 157, 122, 0.15) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 0 0 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.1;
}
.page-hero p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.6;
}
.page-hero-breadcrumb {
    margin-top: 24px;
    font-size: 0.85rem;
    opacity: 0.7;
}
.page-hero-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================
   Footer Multi-Column Grid
   ========================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}
.footer-about .footer-logo-img { height: 56px; margin-bottom: 16px; }
.footer-tagline { color: rgba(255,255,255,0.75); line-height: 1.6; font-size: 0.92rem; }
.footer-links h4, .footer-contact h4, .footer-cta h4 {
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 700;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
    color: rgba(255,255,255,0.75);
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact strong { color: #fff; }
.footer-cta p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0 0 16px; }
.footer-cta .btn { width: 100%; }
.footer-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Loading state for API-driven sections */
.bs-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.bs-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Gallery page grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-page-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}
.gallery-page-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,42,32,0.18);
}
.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 18px 18px;
    background: linear-gradient(to top, rgba(15,42,32,0.92), transparent);
    color: #fff;
    transform: translateY(40%);
    opacity: 0.85;
    transition: all 0.3s;
}
.gallery-page-item:hover .gallery-page-overlay {
    transform: translateY(0);
    opacity: 1;
}
.gallery-page-overlay h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}
.gallery-page-overlay p {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* ==========================================================
   Promotions list page
   ========================================================== */
.promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
}
.promo-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
}
.promo-list-image { aspect-ratio: 16/9; overflow: hidden; }
.promo-list-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-list-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.promo-list-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    align-self: flex-start;
    margin-bottom: 14px;
}
.promo-list-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 12px;
    color: var(--secondary);
}
.promo-list-body p { color: var(--text-light); margin: 0 0 16px; line-height: 1.55; }
.promo-list-timer {
    background: rgba(201,123,58,0.1);
    color: var(--accent-dark);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    align-self: flex-start;
}
.promo-list-code {
    background: var(--cream-dark);
    border: 1px dashed var(--border);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    text-align: center;
}
.promo-list-code strong { color: var(--secondary); letter-spacing: 1px; }
.promo-list-card .btn { margin-top: auto; }

/* Empty promotions state */
.empty-promotions {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 640px;
    margin: 0 auto;
}
.empty-promotions-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}
.empty-promotions h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--secondary);
    margin: 0 0 12px;
}
.empty-promotions p {
    color: var(--text-light);
    margin: 0 0 8px;
    line-height: 1.6;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================
   Blog list page
   ========================================================== */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.blog-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(15,42,32,0.14);
}
.blog-list-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream);
}
.blog-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-list-card:hover .blog-list-image img { transform: scale(1.06); }
.blog-list-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-list-body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-list-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--secondary);
    line-height: 1.25;
}
.blog-list-body p {
    color: var(--text-light);
    line-height: 1.55;
    font-size: 0.93rem;
    margin: 0 0 18px;
    flex: 1;
}
.blog-list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-list-meta i { margin-right: 4px; }
.blog-list-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.blog-list-more:hover { color: var(--primary-dark); }

/* Service card "View details" link */
.bs-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    transition: gap 0.2s, color 0.2s;
}
.bs-detail-link:hover { color: var(--primary-dark); gap: 10px; }
.bs-service-image { display: block; cursor: pointer; }
