/* ============================================
   NOVA ROOM SPA - Emerald Green & Gold
   Complete Master Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --emerald: #0d9488;
    --emerald-light: #14b8a6;
    --emerald-dark: #0f766e;
    --teal: #115e59;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8943a;
    --cream: #faf8f3;
    --cream-dark: #f0ebe0;
    --white: #ffffff;
    --black: #0a0a0a;
    --dark: #0f1a14;
    --dark-light: #1a2f22;
    --text: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a { color: var(--emerald); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--emerald-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.announcement-bar a { color: var(--text-light); text-decoration: underline; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13,148,136,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--dark);
}
.logo-text::first-letter { color: var(--emerald); }

.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--emerald); background: rgba(13,148,136,0.06); }
.nav-menu a.active { color: var(--emerald) !important; font-weight: 600; }

.btn-book-now {
    background: linear-gradient(135deg, var(--emerald), var(--teal)) !important;
    color: var(--text-light) !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.4);
    color: var(--text-light) !important;
}

.btn-login {
    border: 2px solid var(--emerald) !important;
    color: var(--emerald) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
}
.btn-login:hover { background: var(--emerald) !important; color: var(--text-light) !important; }

.user-avatar-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.25rem;
}

.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.6rem; margin-left: 0.25rem; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1000;
    border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text) !important;
    font-size: 0.85rem;
    border-radius: 0 !important;
    white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(13,148,136,0.06); color: var(--emerald) !important; }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.25rem 0; }

/* Mobile Menu */
.mobile-menu-toggle { display: none; }
.nav-overlay { display: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-image {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center; filter: brightness(0.3);
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,26,20,0.95) 0%, rgba(26,47,34,0.85) 50%, rgba(15,26,20,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 650px; padding: 4rem 0; }
.hero-subtitle {
    display: inline-block; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; color: var(--emerald-light); margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800; line-height: 1.05; color: var(--text-light); margin-bottom: 1.5rem;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--emerald-light), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--emerald-light); display: block; }
.hero-stat .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll i { animation: bounce 2s infinite; font-style: normal; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.feature-item .feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.7rem 1.8rem; font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.3px; border: none; border-radius: 50px;
    cursor: pointer; transition: var(--transition); text-transform: uppercase;
}
.btn-primary { background: linear-gradient(135deg, var(--emerald), var(--teal)); color: var(--text-light); box-shadow: 0 4px 16px rgba(13,148,136,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.35); color: var(--text-light); }
.btn-outline-light { background: transparent; color: var(--text-light); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: var(--text-light); }
.btn-outline { background: transparent; color: var(--emerald); border: 2px solid var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: var(--text-light); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; }
.section-light { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-subtitle { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.section-description { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--emerald), var(--gold)); margin: 1rem auto; border-radius: 2px; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-image { position: relative; height: 250px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg, var(--emerald), var(--teal)); color: var(--text-light); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.service-badge.romantic { background: linear-gradient(135deg, #e11d48, #be123c); }
.service-body { padding: 1.5rem; }
.service-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.5rem; display: block; }
.service-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.service-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding: 0.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--emerald); }
.service-duration { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   HOME MASSAGE BANNER
   ============================================ */
.home-massage-section { position: relative; padding: 6rem 0; overflow: hidden; }
.home-massage-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; filter: brightness(0.25); }
.home-massage-content { position: relative; z-index: 2; max-width: 550px; }
.badge-pill { display: inline-block; background: linear-gradient(135deg, var(--emerald), var(--teal)); color: var(--text-light); padding: 0.35rem 1.2rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.home-massage-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-light); margin-bottom: 0.5rem; }
.price-tag { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--gold-light); margin: 0.5rem 0 1rem; }
.home-massage-content .description { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-size: 1.05rem; }
.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li { color: rgba(255,255,255,0.85); padding: 0.4rem 0; font-size: 0.95rem; }

/* ============================================
   COUPLES SECTION
   ============================================ */
.couples-section { padding: 5rem 0; background: var(--cream); }
.couples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.couples-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.couples-image-wrapper img { width: 100%; height: 500px; object-fit: cover; }
.couples-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-family: var(--font-accent); font-size: 1.1rem; font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--teal)); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); padding: 5rem 0; color: var(--text-light); }
.cta-section h2 { color: var(--text-light); font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: var(--text-light); padding: 4rem 0 1.5rem; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: 3px; color: var(--text-light); margin-bottom: 1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2rem; }
.footer-title { color: var(--emerald-light); font-size: 1rem; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--emerald-light); padding-left: 0.25rem; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { background: linear-gradient(135deg, var(--dark), var(--dark-light)); color: var(--text-light); padding: 4rem 0; text-align: center; }
.page-header h1 { color: var(--text-light); font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--emerald-light); }

/* ============================================
   ERROR PAGES
   ============================================ */
.error-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-family: var(--font-display); font-size: 8rem; font-weight: 900; color: var(--emerald); opacity: 0.3; line-height: 1; }
.error-section h1 { margin-bottom: 1rem; }
.error-section p { color: var(--text-muted); margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-messages { position: fixed; top: 1rem; right: 1rem; z-index: 9999; max-width: 380px; }
.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 0.5rem; box-shadow: var(--shadow); animation: slideIn 0.3s ease; display: flex; align-items: center; gap: 0.75rem; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-close { margin-left: auto; background: none; border: none; font-size: 1.25rem; cursor: pointer; opacity: 0.5; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-up { animation: fadeUp 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ============================================
   FORMS
   ============================================ */
.form-control {
    width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border);
    border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Checkbox */
.checkbox-label { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--emerald); }

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard { display: flex; min-height: 100vh; }
.dashboard-sidebar { width: 260px; background: var(--dark); color: var(--text-light); position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.dashboard-main { flex: 1; margin-left: 260px; }
.dashboard-header { background: var(--white); padding: 1rem 2rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.dashboard-content { padding: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stat-card-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--emerald); }
.stat-card-label { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================
   MOBILE RESPONSIVE - ALL BREAKPOINTS
   ============================================ */

/* Tablet & Mobile */
@media (max-width: 991px) {
    /* Mobile Menu */
    .mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1002; }
    .mobile-menu-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
    .nav-overlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
    .nav-overlay.active { opacity: 1; visibility: visible; }
    .nav-menu {
        position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
        background: white; flex-direction: column; padding: 5rem 1.5rem;
        box-shadow: var(--shadow-lg); transition: right 0.3s ease; z-index: 1001; overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { display: block; width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); }
    .nav-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; display: none; }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    
    /* Dashboard */
    .dashboard-sidebar { transform: translateX(-100%); }
    .dashboard-sidebar.active { transform: translateX(0); }
    .dashboard-main { margin-left: 0; }
}

/* Tablet */
@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero-content { padding: 2rem 0; }
    .hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-image { height: 200px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .couples-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .couples-image-wrapper img { height: 250px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .home-massage-section { padding: 4rem 0; }
    .home-massage-content { max-width: 100%; }
    .price-tag { font-size: 2.5rem; }
    .page-header { padding: 3rem 0; }
    .cta-section { padding: 3rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .flash-messages { left: 1rem; right: 1rem; max-width: none; }
}

/* Mobile */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .nav-container { padding: 0.5rem 1rem; }
    .logo-text { font-size: 1.2rem; letter-spacing: 2px; }
    .hero { min-height: 60vh; }
    .hero h1 { font-size: 1.6rem; }
    .hero-stats { flex-direction: column; gap: 0.5rem; padding-top: 1rem; }
    .hero-stat { display: flex; align-items: center; gap: 0.5rem; }
    .hero-stat .stat-number { font-size: 1.3rem; }
    .hero-stat .stat-label { font-size: 0.7rem; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .feature-item { padding: 0.5rem; }
    .feature-item h4 { font-size: 0.8rem; }
    .feature-item p { font-size: 0.7rem; }
    .announcement-bar { font-size: 0.7rem; padding: 0.35rem 0.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
    .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    .service-body { padding: 1rem; }
    .testimonial-card { padding: 1.25rem; }
}
