/* ========================================
   Tim Massage - Houston, TX
   ======================================== */

:root {
    --color-bg: #0d0d14;
    --color-bg-alt: #13131f;
    --color-surface: #1a1a2e;
    --color-surface-hover: #222240;
    --color-border: rgba(255,255,255,0.08);
    --color-text: #e0e0e8;
    --color-text-muted: #8a8aa0;
    --color-heading: #ffffff;
    --color-accent: #c8a97e;
    --color-accent-light: #dfc4a0;
    --color-accent-dark: #a68a5b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --pride-gradient: linear-gradient(
        90deg,
        #e40303 0%, #e40303 16.66%,
        #ff8c00 16.66%, #ff8c00 33.33%,
        #ffed00 33.33%, #ffed00 50%,
        #008026 50%, #008026 66.66%,
        #004dff 66.66%, #004dff 83.33%,
        #750787 83.33%, #750787 100%
    );
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

a:hover {
    color: var(--color-accent-light);
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Pride Stripe
   ======================================== */

.pride-stripe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pride-gradient);
    z-index: 9999;
}

.pride-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(228,3,3,0.1), rgba(117,7,135,0.1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 32px;
}

.pride-badge i {
    background: var(--pride-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-pride {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-pride i {
    background: var(--pride-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 126, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-heading);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-heading);
}

.nav-link.active {
    color: var(--color-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(228,3,3,0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 30%, rgba(255,140,0,0.03) 0%, transparent 35%),
        radial-gradient(ellipse at 60% 70%, rgba(0,128,38,0.03) 0%, transparent 35%),
        radial-gradient(ellipse at 85% 40%, rgba(0,77,255,0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(117,7,135,0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(228,3,3,0.04),
        rgba(255,140,0,0.04),
        rgba(255,237,0,0.03),
        rgba(0,128,38,0.04),
        rgba(0,77,255,0.04),
        rgba(117,7,135,0.04),
        rgba(228,3,3,0.04)
    );
    animation: heroPulse 8s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes heroPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-info-item i {
    color: var(--color-accent);
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========================================
   Trust Bar
   ======================================== */

.trust-bar {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
}

.trust-item i {
    color: var(--color-accent);
    font-size: 1rem;
}

/* ========================================
   Why Choose Tim
   ======================================== */

.why-tim {
    background: var(--color-bg-alt);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advantage-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 126, 0.15);
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-size: 1.2rem;
}

.advantage-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========================================
   Massage Types
   ======================================== */

.massage-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.massage-type {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.massage-type:hover {
    border-color: rgba(200, 169, 126, 0.2);
    transform: translateY(-3px);
}

.massage-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-accent);
    font-size: 1rem;
}

.massage-type h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.massage-type p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(200, 169, 126, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f5c518;
    font-size: 0.85rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    background: var(--color-bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question i {
    color: var(--color-accent);
    font-size: 0.8rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========================================
   Areas Served
   ======================================== */

.areas {
    background: var(--color-bg-alt);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.area-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ========================================
   Contact CTA
   ======================================== */

.contact-cta {
    margin-top: 32px;
}

/* ========================================
   Footer Neighborhoods
   ======================================== */

.footer-neighborhoods {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin-bottom: 12px;
}

/* ========================================
   About
   ======================================== */

.about {
    background: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-image: var(--pride-gradient) 1;
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
    background: var(--pride-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    border: none;
    border-radius: var(--radius-lg);
}

.about-text-col p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.about-feature strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.95rem;
}

.about-feature span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Services / Pricing
   ======================================== */

.services {
    background: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 126, 0.2);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    border-top: 3px solid transparent;
    border-image: var(--pride-gradient) 1;
    border-image-slice: 1 0 0 0;
    background: linear-gradient(180deg, rgba(200, 169, 126, 0.08) 0%, var(--color-surface) 100%);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-duration {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price .dollar {
    font-size: 1.8rem;
    vertical-align: super;
    margin-right: 2px;
    opacity: 0.7;
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-features li i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* ========================================
   Gallery
   ======================================== */

.gallery {
    background: var(--color-bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Contact
   ======================================== */

.contact {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-col p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 460px;
    border: 1px solid var(--color-border);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(0.8) invert(0.92) contrast(0.85);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    font-size: 1.3rem;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-info a {
    color: var(--color-text-muted);
}

.footer-info a:hover {
    color: var(--color-accent);
}

.footer-divider {
    opacity: 0.3;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .massage-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 16px;
        width: 100%;
    }

    .nav-cta-mobile .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 140px 20px 100px;
    }

    .hero-info-bar {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        aspect-ratio: 1;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-image-accent {
        bottom: -10px;
        right: -10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .footer-info {
        flex-direction: column;
        gap: 4px;
    }

    .footer-divider {
        display: none;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-item span {
        font-size: 0.78rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .massage-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Booking Modal
   ======================================== */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.booking-modal.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.booking-modal-content {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
}

.booking-modal.open .booking-modal-content {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.booking-modal-close:hover {
    color: var(--color-heading);
}

.booking-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 169, 126, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--color-accent);
}

.booking-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.booking-modal-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.booking-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-modal-actions .btn {
    padding: 16px 24px;
    font-size: 1rem;
}

.booking-modal-actions .btn i {
    font-size: 1.1rem;
}

.booking-modal-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.booking-modal-hours i {
    font-size: 0.75rem;
}

.navbar {
    z-index: 1001;
}

.nav-menu {
    z-index: 1002;
}
