/* Import Montserrat Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --color-white: #FFFFFF;
    --color-beige-light: #F2EFE7;
    --color-beige-warm: #E8DFD6;
    --color-taupe: #C8B6A6;
    /* --color-espresso: #3C2B2C; */
    --color-espresso: #161112;
    
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    --container-max-width: 1140px;
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-soft: 0 4px 20px rgba(63, 58, 52, 0.08);
    --shadow-hover: 0 12px 40px rgba(63, 58, 52, 0.15);
    --shadow-floating: 0 20px 60px rgba(63, 58, 52, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-espresso);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;
}

/* Page Transition Animation - DISABLED */
.page-transition {
    display: none !important;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-beige-light);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-transition-text {
    position: absolute;
    color: var(--color-beige-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 100px;
    opacity: 0.8;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
}

/* Tablet Scaling - 768px to 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop Scaling - 1920px and above */
@media (min-width: 1920px) {
    :root {
        --container-max-width: 1600px;
        --font-size-h1: 4rem;
        --font-size-h2: 3rem;
        --font-size-h3: 2rem;
    }
    
    body {
        font-size: 18px;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    /* Slightly reduce animations on large screens */
    .btn:hover,
    .magnetic:hover {
        transform: scale(1.03);
    }
    
    .treatment-card:hover {
        transform: translateY(-8px);
    }
}

/* About page specific styles */
.about-content {
    text-align: center;
}

/* Ultra-wide Monitors - 2560px and above */
@media (min-width: 2560px) {
    :root {
        --container-max-width: 2000px;
        --font-size-h1: 5rem;
        --font-size-h2: 3.5rem;
        --font-size-h3: 2.5rem;
        --spacing-lg: 6rem;
        --spacing-xl: 8rem;
    }
    
    body {
        font-size: 20px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .section {
        padding: 8rem 0;
    }
    
    .review {
        padding: 4rem;
    }
    
    .review-text {
        font-size: 1.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for 3 treatments */
    }
    
    /* Reduce animation intensity on ultra-wide screens */
    .btn:hover,
    .magnetic:hover {
        transform: scale(1.02) !important; /* Much less scaling */
    }
    
    .treatment-card:hover {
        transform: translateY(-5px) !important; /* Less movement */
    }
    
    .review-arrow:hover {
        transform: scale(1.05) !important; /* Less scaling */
    }
    
    /* Disable overly intense animations */
    .gallery-item:hover {
        transform: scale(1.02) !important;
    }
    
    /* Disable complex CSS animations that might cause issues */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    .ripple::before,
    .ripple::after {
        display: none !important;
    }
}



/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 300;
    color: #5a4f45;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-bounce);
    outline: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:focus-visible {
    outline: 2px solid var(--color-taupe);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-beige-warm), var(--color-taupe));
    color: var(--color-espresso);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-espresso), #2a251f);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-ghost {
    background-color: transparent;
    border: 2px solid var(--color-taupe);
    color: var(--color-espresso);
    position: relative;
    box-shadow: 0 4px 15px rgba(200, 182, 166, 0.5), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-ghost::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-beige-light);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-ghost:hover::after {
    width: 100%;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Booking Button Special */
.btn-booking {
    background: linear-gradient(135deg, #8B7355, #6B5744);
    border: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(107, 87, 68, 0.35);
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.btn-booking:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(107, 87, 68, 0.45);
    background: linear-gradient(135deg, #7A6345, #5A4734);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4c4b5 0%, #c8b6a6 50%, #b8a294 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-beige-light);
    position: relative;
    overflow: hidden;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(200, 182, 166, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(200, 182, 166, 0.5));
}

.preloader-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-beige-light), transparent);
    transform: translateX(-100%);
    animation: loadingLine 1.5s ease-in-out infinite;
}

.preloader-stats {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInStats 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInStats {
    to {
        opacity: 1;
    }
}

.preloader-counter {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--color-beige-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(200, 182, 166, 0.6);
}

.counter-number {
    display: inline-block;
    min-width: 3ch;
}

.preloader-label {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: var(--color-beige-warm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-spinner {
    margin-top: 3rem;
    width: 80px;
    height: 80px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.preloader-spinner::before {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--color-beige-light);
    border-right-color: var(--color-beige-light);
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-spinner::after {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 4px solid transparent;
    border-bottom-color: var(--color-taupe);
    border-left-color: var(--color-taupe);
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

@keyframes loadingLine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}



.header.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
}

.header.scrolled .nav {
    transform: scale(0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-espresso);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-taupe), var(--color-beige-warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo.animate::after {
    transform: scaleX(1);
}

.logo:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--color-espresso);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: rgba(200, 182, 166, 0.1);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-taupe), var(--color-beige-warm));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before {
    width: 120%;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-espresso), var(--color-taupe));
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(120px, 15vh, 180px);
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    background-image: url('img/laura2.svg');
    background-size: 50%;
    background-position: right 30%;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(203, 186, 172, 0) 0%,
        rgba(203, 186, 172, 0.4) 30%,
        rgba(203, 186, 172, 0.75) 60%,
        rgba(203, 186, 172, 0.95) 85%,
        rgba(203, 186, 172, 1) 100%
    );
    z-index: 1;
}

/* Gradient separator at bottom - beige overlays hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(180deg, 
        rgba(203, 186, 172, 0) 0%,
        rgba(203, 186, 172, 0.4) 30%,
        rgba(203, 186, 172, 0.75) 60%,
        rgba(203, 186, 172, 0.95) 85%,
        rgba(203, 186, 172, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: var(--color-espresso);
    max-width: 900px;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideInDown 1.2s ease-out 0.5s forwards;
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-title {
    margin-bottom: 2rem;
    opacity: 0;
    background: linear-gradient(135deg, var(--color-espresso), var(--color-taupe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100px) scale(0.6) rotateX(30deg);
    animation: heroTitleEnhanced 2s cubic-bezier(0.23, 1, 0.320, 1) 0.5s forwards;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero .lead {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    background: rgba(140, 110, 90, 0.15);
    border: 2px solid rgba(140, 110, 90, 0.3);
    border-radius: 10px;
    z-index: 1;
}

/* Sections */
.section {
    padding: clamp(80px, 12vw, 120px) 0;
    position: relative;
    background: var(--color-white);
    z-index: 10;
}

.section-alt {
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(60px, 10vw, 80px);
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #5a4f45, #7a6f65);
    border-radius: 2px;
}

/* About Section */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.pillar {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(60px) scale(0.8);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 182, 166, 0.1), transparent);
    transition: left 0.8s;
}

.pillar:hover::before {
    left: 100%;
}

.pillar:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-floating);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-beige-warm), var(--color-beige-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-hover);
}

/* Treatments Section */
.full-services-toggle {
    text-align: center;
    margin-top: 2rem;
}

.full-services-toggle .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.main-treatments {
    margin-bottom: 3rem;
}

/* New Treatments Mosaic Grid - ANIMATED SCROLL WITH STAGGER */
.section-treatments {
    padding: 80px 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* Gradient at the top for smooth transition */
.section-treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, 
        rgba(203, 186, 172, 0.8) 0%,
        rgba(203, 186, 172, 0.4) 40%,
        rgba(203, 186, 172, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.treatments-mosaic-grid {
    display: flex;
    gap: 20px;
    height: 600px;
    align-items: end;
    width: max-content;
    position: relative;
    z-index: 0;
}

.treatment-mosaic-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: calc((100vw - 80px - 40px) / 3);
    flex-shrink: 0;
}

/* Każda karta - bazowa pozycja */
.treatment-mosaic-card[data-index] {
    will-change: transform;
}

.treatment-mosaic-card:hover {
    transform: translateY(calc(var(--stagger-offset, 0) - 4%)) scale(1.05);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.treatment-mosaic-card[data-index="0"]:hover { --stagger-offset: 0; }
.treatment-mosaic-card[data-index="1"]:hover { --stagger-offset: -4%; }
.treatment-mosaic-card[data-index="2"]:hover { --stagger-offset: -8%; }
.treatment-mosaic-card[data-index="3"]:hover { --stagger-offset: -12%; }
.treatment-mosaic-card[data-index="4"]:hover { --stagger-offset: -16%; }
.treatment-mosaic-card[data-index="5"]:hover { --stagger-offset: -20%; }
.treatment-mosaic-card[data-index="6"]:hover { --stagger-offset: -24%; }
.treatment-mosaic-card[data-index="7"]:hover { --stagger-offset: -28%; }
.treatment-mosaic-card[data-index="8"]:hover { --stagger-offset: -32%; }
.treatment-mosaic-card[data-index="9"]:hover { --stagger-offset: -36%; }
.treatment-mosaic-card[data-index="10"]:hover { --stagger-offset: -40%; }
.treatment-mosaic-card[data-index="11"]:hover { --stagger-offset: -44%; }
.treatment-mosaic-card[data-index="12"]:hover { --stagger-offset: -48%; }
.treatment-mosaic-card[data-index="13"]:hover { --stagger-offset: -52%; }

.treatment-mosaic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) grayscale(0.2);
    transition: all 0.5s ease;
}

.treatment-mosaic-card:hover .treatment-mosaic-bg {
    filter: brightness(0.5) grayscale(0);
    transform: scale(1.1);
}

.treatment-mosaic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Animated text in each card */
.treatment-text-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.treatment-text-track {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    will-change: transform;
}

.treatment-text-track span {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.2em;
    padding: 0 2rem;
    text-transform: uppercase;
}

.treatment-mosaic-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    padding: 1.5rem;
}

.treatment-mosaic-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .treatments-mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
        height: auto;
    }
    
    .treatment-mosaic-card.large,
    .treatment-mosaic-card.medium,
    .treatment-mosaic-card.small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.treatments-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 600px;
    gap: 0;
}

.treatment-hero-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.treatment-hero-card.hidden {
    display: none;
}

.treatment-hero-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.treatment-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) grayscale(0.2);
    transition: all 0.5s ease;
}

.treatment-hero-card:hover .treatment-hero-bg {
    filter: brightness(0.5) grayscale(0);
    transform: scale(1.1);
}

.treatment-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.treatment-hero-text-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.treatment-hero-text-track {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    will-change: transform;
}

.treatment-hero-text-track span {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.15em;
    padding: 0 3rem;
    text-transform: uppercase;
}

.treatment-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.treatment-hero-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .treatments-hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .treatment-hero-card {
        height: 400px;
    }
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.treatment-card.featured {
    position: relative;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige-light) 100%);
    border: 1px solid var(--color-beige-warm);
}

/* Pełna lista usług */
.full-services-list {
    background: var(--color-beige-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    display: none;
}

.full-services-list.active {
    display: block;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: var(--color-espresso);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-header:hover {
    color: var(--color-taupe);
}

.category-header svg {
    transition: transform 0.3s ease;
}

.service-category.open .category-header svg {
    transform: rotate(180deg);
}

.category-services {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-category.open .category-services {
    max-height: 300px;
}

.category-services li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-beige-light);
    color: var(--color-taupe);
    font-weight: 500;
}

.category-services li:last-child {
    border-bottom: none;
}

.treatment-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    opacity: 1;
    transform: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-taupe), var(--color-beige-warm));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.treatment-card:hover::before {
    transform: scaleX(1);
}

.treatment-card:hover {
    transform: translateY(-12px) rotateX(0deg) scale(1.02);
    box-shadow: var(--shadow-floating);
    border-color: var(--color-beige-warm);
}

.treatment-card h3 {
    color: var(--color-espresso);
    margin-bottom: 1rem;
    position: relative;
}

.treatment-card p {
    color: var(--color-taupe);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Gallery Section */
#gallery {
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-beige-warm) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--color-beige-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.gallery-item::before {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-floating);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.5) rotate(10deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-floating);
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-white);
    border: none;
    color: var(--color-espresso);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-hover);
    z-index: 10;
    transform: translate(50%, -50%);
}

.lightbox-close:hover {
    transform: translate(50%, -50%) scale(1.1) rotate(90deg);
    background: var(--color-beige-warm);
}

/* Reviews Section */
.reviews-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.review {
    text-align: center;
    padding: 3rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    display: none;
    position: relative;
    overflow: hidden;
    transition: opacity 0.6s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.review::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: var(--color-beige-light);
    font-family: var(--font-heading);
    line-height: 1;
}

.review.active {
    display: block;
    opacity: 1;
}

.review-stars {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.review-star {
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.review-text {
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-taupe);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.review-author {
    font-weight: 600;
    color: var(--color-espresso);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.review-arrow {
    background: linear-gradient(135deg, var(--color-beige-warm), var(--color-beige-light));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-soft);
}

.review-arrow:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: var(--shadow-hover);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-beige-warm) 0%, var(--color-beige-light) 50%, var(--color-beige-warm) 100%);
    border: 2px solid var(--color-taupe);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-floating);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.1) 90deg, transparent 180deg, rgba(255, 255, 255, 0.1) 270deg, transparent 360deg);
    animation: ctaRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Face Map Section */
.face-map-section {
    background: linear-gradient(135deg, 
        rgba(200, 182, 166, 0.7) 0%, 
        rgba(232, 223, 214, 0.8) 50%, 
        rgba(200, 182, 166, 0.7) 100%),
        linear-gradient(135deg, #b8a294 0%, #d4c4b5 100%);
    padding: clamp(80px, 12vw, 120px) 0;
    overflow: hidden;
    position: relative;
}

/* Gradient at the top for smooth transition from hero */
.face-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, 
        rgba(203, 186, 172, 1) 0%,
        rgba(203, 186, 172, 0.7) 20%,
        rgba(203, 186, 172, 0.3) 50%,
        rgba(203, 186, 172, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Animated text behind face image */
.face-map-text-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.face-map-text-track {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    will-change: transform;
}

.face-map-text-track span {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.15em;
    padding: 0 4rem;
    text-transform: uppercase;
}

@keyframes scrollTextSlow {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-50%);
    }
}

.face-map-section > .container {
    position: relative;
    z-index: 2;
}

.face-map-container {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.face-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.face-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-taupe);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.face-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    opacity: 0.70;
}

.face-point {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(242, 239, 231, 0.75);
    border: 3px solid var(--color-taupe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.face-point:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--color-taupe);
    border-color: var(--color-espresso);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.face-point:hover .point-number {
    color: var(--color-white);
}

.point-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-espresso);
    transition: var(--transition);
}

.face-point::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-taupe);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Treatment Modal */
.treatment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.treatment-modal.active {
    display: flex;
}

.treatment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 17, 18, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.treatment-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-floating);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.treatment-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 2px solid var(--color-taupe);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-espresso);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.treatment-modal-close:hover {
    background: var(--color-espresso);
    color: var(--color-white);
    transform: rotate(90deg);
}

.treatment-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.treatment-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.treatment-modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.treatment-modal-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-taupe), var(--color-espresso));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.treatment-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-espresso);
    margin-bottom: 0.5rem;
}

.treatment-modal-description {
    color: var(--color-taupe);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.treatment-modal-features h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-taupe);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.treatment-modal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.treatment-modal-list li {
    padding: 0.5rem 0;
    color: var(--color-espresso);
    position: relative;
    padding-left: 1.5rem;
}

.treatment-modal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-taupe);
    font-weight: 700;
}

/* Subtypes styling */
.treatment-subtypes {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 0;
}

.treatment-subtypes li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    color: var(--color-espresso);
}

.treatment-subtypes li::before {
    content: none;
}

/* Sub-subpoints styling with bullet points and more indent */
.subtype-items {
    list-style: none;
    padding: 0;
    margin-top: 0.4rem;
    margin-left: 0;
}

.subtype-items li {
    padding: 0.3rem 0;
    padding-left: 3rem;
    color: var(--color-taupe);
    font-size: 0.95rem;
}

.subtype-items li::before {
    content: none;
}

.treatment-with-subtypes > strong {
    display: block;
    margin-bottom: 0.3rem;
}

.subtype-with-items {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .face-point {
        width: 40px;
        height: 40px;
    }
    
    .point-number {
        font-size: 0.95rem;
    }
    
    .treatment-modal-body {
        grid-template-columns: 1fr;
    }
    
    .treatment-modal-image {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        max-height: 300px;
    }
    
    .treatment-modal-info {
        padding: 1.5rem;
    }
}

.cta h2 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-espresso), var(--color-taupe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Map Section */
.map-section {
    padding: 0;
    background: var(--color-white);
}

.map-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 60px) 0;
}

.map-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1.1rem;
    color: var(--color-taupe);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-espresso), #2a251f);
    color: var(--color-beige-light);
    padding: clamp(60px, 10vw, 80px) 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23C8B6A6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-column {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.footer-column h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-beige-warm);
    border-radius: 2px;
}

.footer-column p,
.footer-column a {
    color: var(--color-beige-light);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-taupe), var(--color-beige-warm));
    border-radius: 50%;
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition-bounce);
    opacity: 0;
    transform: scale(0.5) rotate(45deg);
    box-shadow: var(--shadow-soft);
}

.social-link:hover {
    transform: scale(1.2) rotate(0deg);
    box-shadow: var(--shadow-hover);
}

.footer-bottom {
    border-top: 1px solid var(--color-taupe);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-beige-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.footer-credits {
    margin-top: 1rem;
}

.footer-credits a {
    color: var(--color-beige-warm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-beige-warm);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-white);
}

.footer-credits a:hover::after {
    transform: scaleX(1);
}

/* Enhanced Animations */
.fade-in {
    opacity: 1;
    transform: none;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideLeft 0.8s ease-out forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-delayed {
    animation: float 6s ease-in-out infinite 2s;
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glitch Effect for Special Elements */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-hover);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-bounce);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero h1,
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        gap: 1rem;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .full-services-list {
        padding: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-espresso: #000000;
        --color-taupe: #666666;
    }
}

/* Print styles */
@media print {
    .preloader,
    .cursor,
    .cursor-follower,
    .lightbox,
    .particles {
        display: none !important;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Page Hero for subpages */
.page-hero {
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-beige-warm) 100%);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

/* Specific styles for O NAS page */
.onas-hero {
    background-color: #3C2B2C;
    background: url('img/onas-bg.png') center 20%/cover no-repeat !important;
    padding: 6rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.onas-hero::before {
    display: none;
}

.onas-hero .page-main-title {
    color: var(--color-taupe);
    text-shadow: none;
}

.zabiegi-hero {
    background-color: #3C2B2C;
    padding: 6rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.zabiegi-hero::before {
    display: none;
}

.zabiegi-hero .page-main-title {
    color: var(--color-taupe);
    text-shadow: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumbs {
    margin-top: 2rem;
    color: var(--color-taupe);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--color-espresso);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--color-taupe);
}

/* Treatment cards enhancements */
.treatment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.treatment-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.treatment-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-taupe);
}

.treatment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-beige-warm);
    font-weight: bold;
}

.treatment-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin: 1.5rem 0;
    text-align: center;
    padding: 1rem;
    background: var(--color-beige-light);
    border-radius: var(--border-radius);
}

.nav-links a.active {
    color: var(--color-taupe);
    font-weight: 600;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 4rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-espresso);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-espresso);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-espresso);
    margin-bottom: 1.5rem;
}

.about-text .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-taupe);
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

.about-values h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-espresso);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: valueReveal 0.8s ease-out forwards;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }
.value-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes valueReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.value-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-espresso);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-espresso);
    line-height: 1.6;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-beige-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Individual positioning for better face centering */
.team-member:nth-child(1) .member-photo img {
    object-position: center 15%;
}

.team-member:nth-child(2) .member-photo img {
    object-position: center 10%;
}

.team-member:nth-child(3) .member-photo img {
    object-position: center 10%;
}

.team-member:nth-child(4) .member-photo img {
    object-position: center 5%;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-espresso);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-taupe);
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--color-espresso);
    line-height: 1.6;
}

/* Logo Styles */
.nav-logo-img {
    height: 40px;
    width: auto;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

/* Hero Image Styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--color-beige-light) 0%, 
        rgba(242, 239, 231, 0.95) 25%,
        var(--color-white) 50%, 
        rgba(242, 239, 231, 0.95) 75%,
        var(--color-beige-light) 100%);
}

.hero-image {
    display: none; /* Ukrywamy zdjęcia */
}

.hero-bg-image {
    display: none; /* Ukrywamy zdjęcia */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(60, 43, 44, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(200, 182, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(60, 43, 44, 0.08) 0%, transparent 40%);
    animation: pageHeroFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes pageHeroFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    33% { 
        transform: translate(20px, -30px) rotate(120deg) scale(1.05); 
        opacity: 0.9;
    }
    66% { 
        transform: translate(-25px, 25px) rotate(240deg) scale(0.95); 
        opacity: 0.8;
    }
}

.page-hero-content {
    text-align: center;
    color: var(--color-espresso);
    z-index: 1;
    position: relative;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-espresso);
    animation: slideInUp 1s ease-out 0.3s both;
}

.page-description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--color-espresso);
    animation: slideInUp 1s ease-out 0.6s both;
}

.breadcrumbs {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--color-espresso);
    animation: slideInUp 1s ease-out 0.9s both;
}

.breadcrumbs a {
    color: var(--color-taupe);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--color-espresso);
}

/* Page Main Title Styles */
.page-main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-espresso);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: titleReveal 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(45deg);
        filter: blur(8px);
        text-shadow: 0 0 30px rgba(60, 43, 44, 0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02) rotateX(0deg);
        filter: blur(2px);
        text-shadow: 0 5px 15px rgba(60, 43, 44, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
}

@keyframes heroTitleEnhanced {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.6) rotateX(30deg);
        filter: blur(10px);
        letter-spacing: 10px;
    }
    30% {
        opacity: 0.3;
        transform: translateY(50px) scale(0.8) rotateX(15deg);
        filter: blur(5px);
        letter-spacing: 5px;
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05) rotateX(0deg);
        filter: blur(1px);
        letter-spacing: 2px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
        letter-spacing: normal;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .nav-logo-img {
        height: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   TREATMENT MODAL STYLES
   ============================================ */

.treatment-card.clickable {
    cursor: pointer;
    transition: var(--transition);
}

.treatment-card.clickable:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.treatment-card .btn-details {
    margin-top: 1rem;
    width: 100%;
}

.treatment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.treatment-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 17, 18, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-floating);
    z-index: 10001;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-beige-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-espresso);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-taupe);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.modal-description {
    color: var(--color-espresso);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--color-espresso);
}

.modal-description h3:first-child {
    margin-top: 0;
}

.modal-description p {
    margin-bottom: 1rem;
}

.modal-description ul {
    margin: 0.5rem 0 1rem 1.5rem;
    list-style-type: disc;
}

.modal-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-beige-light);
    border-radius: var(--border-radius-sm);
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-espresso);
}

.modal-duration {
    font-size: 1rem;
    color: var(--color-espresso);
    display: flex;
    align-items: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding-right: 2.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .modal-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        min-width: unset;
    }
}

/* ===============================================
   Treatment Detail Pages
   =============================================== */

.treatment-hero {
    background: linear-gradient(135deg, #161112 0%, #2a2325 100%);
    padding: 120px 0 60px;
    color: #FFFFFF;
}

.treatment-hero-content {
    max-width: 800px;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.breadcrumbs span {
    opacity: 0.6;
}

.treatment-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.treatment-hero .lead {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}

.treatment-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 60px;
}

.treatment-content {
    max-width: 800px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #161112;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C8B6A6;
}

.content-block p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a4a4a;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C8B6A6;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding: 0;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding: 20px 0 20px 60px;
    border-left: 2px solid #E8DFD6;
    margin-bottom: 20px;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: -20px;
    top: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C8B6A6 0%, #A89885 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-list strong {
    display: block;
    font-size: 1.1rem;
    color: #161112;
    margin-bottom: 8px;
}

.process-list p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.technique-card {
    background: #FFFFFF;
    border: 2px solid #E8DFD6;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.technique-card:hover {
    border-color: #C8B6A6;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.technique-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #161112;
    margin-bottom: 10px;
}

.technique-card p {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
}

.healing-timeline {
    background: #F2EFE7;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.timeline-item {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #C8B6A6;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item strong {
    display: block;
    color: #161112;
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-item p {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.treatment-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #FFFFFF;
    border: 2px solid #E8DFD6;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #161112;
    margin-bottom: 20px;
}

.price-tag {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #F2EFE7 0%, #E8DFD6 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #161112;
}

.treatment-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #E8DFD6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.95rem;
    color: #161112;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #4a4a4a;
    line-height: 1.4;
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #E8DFD6;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item strong {
    display: block;
    color: #161112;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.faq-item p {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .treatment-layout {
        grid-template-columns: 1fr;
    }

    .treatment-sidebar {
        position: static;
    }

    .treatment-hero h1 {
        font-size: 2rem;
    }

    .technique-grid {
        grid-template-columns: 1fr;
    }
}