/* ==========================================================================
   BUSINESS 10: MED-SPA (FLOATING HERO, MAGENTA & PEACH)
   ========================================================================== */

:root {
    --primary: #111827;        /* Almost Black */
    --brand-primary: #db2777;  /* Radiant Magenta */
    --brand-secondary: #f59e0b;/* Warm Peach/Gold */
    --bg-white: #ffffff;
    --bg-light: #fff1f2;       /* Very soft pink blush */
    --text-main: #374151;
    --text-muted: #6b7280;
    --border: #e5e7eb;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo { color: var(--primary); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 15px; }

.container { max-width: 1150px; margin: 0 auto; padding: 0 5%; }
img { max-width: 100%; display: block; border-radius: 16px; }
a { text-decoration: none; }

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.magenta-text { color: var(--brand-primary); }
.bg-light { background-color: var(--bg-light); }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.flex-center { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.align-center { align-items: center; }
.eyebrow { font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.eyebrow-peach { color: var(--brand-secondary); font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.font-sm { font-size: 0.9rem; }
.mb-4 { margin-bottom: 40px; } .mt-2 { margin-top: 10px; } .mt-4 { margin-top: 30px; } .pt-3 { padding-top: 20px; }

/* Banner */
.josef-preview-banner { background: var(--bg-light); color: var(--brand-primary); text-align: center; padding: 8px; font-size: 13px; border-bottom: 1px solid #fbcfe8; }

/* =========================================================
   MASTER PROTOCOL: ARCHITECTURE 2 (FLOATING SCULPTED NOTCH)
   ========================================================= */
.header-2-wrapper { margin-top: 20px; margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 10px 20px rgba(219, 39, 119, 0.05)); z-index: 100; position: relative; }
.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; }
.nav-link { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-link:hover { color: var(--brand-primary); }

.h2-top {
    width: 85%; background: white; border-radius: 20px 20px 0 0; padding: 18px 40px;
    display: flex; justify-content: space-between; align-items: center; position: relative; border-bottom: 1px solid var(--border);
}
.h2-bottom {
    width: 65%; background: white; border-radius: 0 0 20px 20px; padding: 15px 30px;
    display: flex; justify-content: center; gap: 40px; position: relative;
}
.h2-bottom::before, .h2-bottom::after { content: ''; position: absolute; top: 0; width: 25px; height: 25px; background: transparent; }
.h2-bottom::before { left: -25px; border-top-right-radius: 15px; box-shadow: 10px -10px 0 0 white; }
.h2-bottom::after { right: -25px; border-top-left-radius: 15px; box-shadow: -10px -10px 0 0 white; }

/* 1. FLOATING CENTER CARD HERO */
.hero-floating { position: relative; display: flex; align-items: center; justify-content: center; padding: 80px 0 120px 0; min-height: 80vh; margin-top: -120px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

.hero-card-wrapper { z-index: 10; display: flex; justify-content: center; width: 100%; }
.glass-card { 
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(15px); 
    padding: 60px 50px; 
    border-radius: 24px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
    border: 1px solid rgba(255,255,255,0.5);
    max-width: 750px;
}
.glass-card h1 { font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 20px; letter-spacing: -1px; }
.glass-card p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; }

.card-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-magenta { background: var(--brand-primary); color: white; padding: 14px 32px; border-radius: 50px; font-weight: 700; transition: all 0.3s; display: inline-block; box-shadow: 0 10px 20px rgba(219, 39, 119, 0.2); }
.btn-magenta:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(219, 39, 119, 0.3); }
.btn-magenta-solid { background: white; color: var(--brand-primary); padding: 14px 32px; border-radius: 50px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-magenta-solid:hover { transform: translateY(-2px); }
.btn-outline-dark { border: 2px solid var(--primary); color: var(--primary); padding: 12px 30px; border-radius: 50px; font-weight: 700; transition: all 0.2s; display: inline-block; }
.btn-outline-dark:hover { background: var(--primary); color: white; }

/* 2. Trust Bar */
.trust-bar { padding: 30px 0; }
.trust-text { font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-right: 20px; }
.trust-logos { display: flex; gap: 30px; flex-wrap: wrap; }
.cert-logo { font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.cert-logo i { color: var(--brand-secondary); font-size: 1.2rem; }

/* 3. About Section */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content p { font-size: 1.1rem; color: var(--text-muted); }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 25px; }
.benefit-list li { display: flex; gap: 15px; align-items: flex-start; }
.icon-wrap { width: 50px; height: 50px; background: var(--bg-light); color: var(--brand-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.benefit-list h4 { margin-bottom: 5px; font-size: 1.1rem; }
.benefit-list p { font-size: 0.95rem; margin: 0; }

.about-image { position: relative; }
.about-image img { position: relative; z-index: 2; height: 500px; object-fit: cover; }
.accent-blob { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)); border-radius: 50%; z-index: 1; opacity: 0.8; filter: blur(40px); }

/* 4. Treatments Grid */
.treatments-section { padding: 100px 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.treatment-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.treatment-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); box-shadow: 0 20px 40px rgba(219, 39, 119, 0.08); }
.card-icon { font-size: 3rem; color: var(--brand-primary); margin-bottom: 20px; display: inline-block; }
.treatment-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.treatment-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.card-link { font-weight: 700; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* 5. Results Banner */
.results-banner { background: linear-gradient(135deg, var(--brand-primary), #be185d); padding: 60px 0; border-radius: 24px; max-width: 1150px; margin: 0 auto 80px auto; color: white; }
.banner-text { max-width: 600px; }
.banner-text h2 { color: white; margin-bottom: 10px; }
.banner-text p { color: #fbcfe8; font-size: 1.1rem; }

/* 6. Reviews Section */
.review-section { padding: 100px 0; }
.review-card { max-width: 800px; margin: 0 auto; background: white; padding: 50px; border-radius: 24px; box-shadow: 0 10px 40px rgba(219, 39, 119, 0.05); border: 1px solid var(--border); }
.review-card .stars { color: var(--brand-secondary); font-size: 1.5rem; margin-bottom: 25px; }
.review-card blockquote { font-size: 1.3rem; font-style: italic; color: var(--primary); margin-bottom: 25px; line-height: 1.6; }

/* 7. Footer */
.spa-footer { padding: 80px 0 30px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-hours p, .footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--text-muted); font-weight: 500; }
.footer-hours h4, .footer-contact h4 { margin-bottom: 20px; font-size: 1.1rem; }
.socials a { color: var(--text-muted); font-size: 1.5rem; margin-left: 15px; transition: color 0.2s; }
.socials a:hover { color: var(--brand-primary); }

/* Animations */
.fade-in-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 992px) {
    .hide-mobile { display: none; }
    .h2-top { width: 100%; border-radius: 16px; padding: 20px; }
    .hero-floating { padding: 120px 5% 60px 5%; margin-top: -100px; }
    .glass-card { padding: 40px 30px; }
    .about-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .results-banner { border-radius: 0; margin: 0 0 80px 0; flex-direction: column; text-align: center; gap: 30px; padding: 50px 20px; }
}