/* ============================================
   Thai Massage Sothon — Modern Design System
   ============================================ */

:root {
    --primary: #C4933F;
    --primary-dark: #A37A2E;
    --primary-light: #D4A95A;
    --secondary: #1A1A0F;
    --accent: #F5E6D0;
    --accent-dark: #E8D4B8;
    --accent-light: #FAF3EB;
    --cream: #FBF7F2;
    --cream-dark: #F0EAE0;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-muted: #999999;
    --border: #E8E0D6;
    --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);
}
.navbar.scrolled .logo-icon { color: var(--primary); }
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .logo-name { color: var(--secondary); }
.logo-tagline {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.navbar.scrolled .logo-tagline { color: var(--text-light); }

.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('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&h=900&fit=crop') center/cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 15, 0.6) 0%,
        rgba(26, 26, 15, 0.5) 50%,
        rgba(26, 26, 15, 0.7) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(196, 147, 63, 0.2);
    border: 1px solid rgba(196, 147, 63, 0.4);
    color: var(--primary-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.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; }
}

/* ============================================
   Mobile Service Section
   ============================================ */
.mobile-service-section {
    padding: 100px 0;
    background: var(--cream);
}
.mobile-service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.mobile-service-content {
    padding: 60px;
}
.mobile-service-content p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.mobile-pricing {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}
.mobile-price-card {
    flex: 1;
    background: var(--accent-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}
.mobile-price-card .duration {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}
.mobile-price-card .amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.mobile-service-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.mobile-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.mobile-note i { margin-right: 4px; }
.mobile-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

@media (max-width: 768px) {
    .mobile-service-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .mobile-service-content { padding: 40px 24px; }
    .mobile-service-image { order: -1; }
    .mobile-service-image img { min-height: 280px; }
    .mobile-pricing { flex-direction: column; }
}

/* ============================================
   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, .mobile-service-section,
    .gallery-section, .reviews-section, .cta-section,
    .locations-section, .booking-section, .faq-section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
}
