/* ==========================================================================
   ERNESTYNA.PL - Profesjonalne przedłużanie włosów Kraków
   Mobile-first, SEO-optimized, Fast-loading CSS
   ========================================================================== */

/* CSS Custom Properties - łatwa personalizacja */
:root {
    --color-primary: #c9a86c;
    --color-primary-dark: #b8956a;
    --color-primary-light: #e8d4b8;
    --color-secondary: #2c2c2c;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg: #faf9f7;
    --color-bg-alt: #f5f3f0;
    --color-accent: #d4a574;
    --color-success: #4caf50;
    --color-error: #e74c3c;
    
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header__inner {
        padding: 0.6rem 2rem;
        gap: 1.5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo img {
        height: 42px;
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 48px;
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-secondary);
    transition: all var(--transition);
}

.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);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.nav.active {
    right: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-bg-alt);
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

/* Dropdown */
.nav__dropdown {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.nav__item.open .nav__dropdown {
    display: block;
}

.nav__dropdown-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.nav__dropdown-link:hover {
    color: var(--color-primary);
}

.nav__item--has-dropdown .nav__link::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.5rem;
    transition: transform var(--transition);
}

.nav__item--has-dropdown.open .nav__link::after {
    transform: rotate(180deg);
}

/* Header CTA */
.header__cta {
    display: none;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    
    .nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        box-shadow: none;
        overflow: visible;
    }
    
    .nav__list {
        flex-direction: row;
        gap: 0.25rem;
        align-items: center;
    }
    
    .nav__link {
        padding: 0.6rem 0.9rem;
        border: none;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        white-space: nowrap;
        border-radius: 6px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .nav__link:hover {
        background: var(--color-bg-alt);
    }
    
    .nav__dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: var(--color-white);
        box-shadow: var(--shadow-md);
        border-radius: var(--radius-md);
        padding: 0.5rem 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all var(--transition);
    }
    
    .nav__item:hover .nav__dropdown,
    .nav__item.open .nav__dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav__dropdown-link {
        padding: 0.5rem 1rem;
    }
    
    .header__cta {
        display: block;
    }
    
    .header__cta.btn {
        padding: 0.55rem 1.25rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        border-radius: 8px;
        white-space: nowrap;
    }
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

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

.btn--white:hover {
    background: transparent;
    color: var(--color-white);
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a86c" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--color-primary);
}

.hero__text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero__feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section--alt {
    background: var(--color-white);
}

.section--dark {
    background: var(--color-secondary);
    color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section__badge {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section__title {
    margin-bottom: 1rem;
}

.section__text {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card__title {
    margin-bottom: 0.75rem;
}

.service-card__text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card__link::after {
    content: '→';
    transition: transform var(--transition);
}

.service-card:hover .service-card__link::after {
    transform: translateX(5px);
}

/* ==========================================================================
   BENEFITS / FEATURES
   ========================================================================== */

.benefits {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.benefit__title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit__text {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

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

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

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

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

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   CTA SECTION (Lejek)
   ========================================================================== */

.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta {
        padding: 5rem 0;
    }
}

.cta__title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial__stars {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial__name {
    font-weight: 600;
    color: var(--color-secondary);
}

.testimonial__service {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   CONTACT FORM (Lejek)
   ========================================================================== */

.contact-section {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.contact-info__label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-info__value {
    font-weight: 600;
    color: var(--color-secondary);
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.form-checkbox input {
    margin-top: 0.25rem;
    accent-color: var(--color-primary);
}

/* ==========================================================================
   CONTENT PAGE STYLES
   ========================================================================== */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
    text-align: center;
}

.page-hero__title {
    margin-bottom: 1rem;
}

.page-hero__breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-primary);
}

.content {
    padding: 4rem 0;
}

.content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    margin: 2.5rem 0 1rem;
}

.content h3 {
    margin: 2rem 0 0.75rem;
}

.content ul,
.content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content ul li,
.content ol li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.content ol {
    counter-reset: item;
}

.content ol li {
    counter-increment: item;
}

.content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* Info boxes */
.info-box {
    background: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.info-box__title {
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   PRICING TABLE
   ========================================================================== */

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.pricing-card--featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.pricing-card--featured::before {
    content: 'Popularne';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card__title {
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1rem 0;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.pricing-card__features {
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card__features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--color-bg-alt);
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer__title {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING CTA (Lejek)
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.floating-cta__btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.floating-cta__btn:hover {
    transform: scale(1.1);
    background: var(--color-primary-dark);
}

.floating-cta__btn--phone {
    background: var(--color-success);
}

.floating-cta__btn--phone:hover {
    background: #43a047;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   LEAD MODAL & FLOATING CTA EXTENDED
   ========================================================================== */

/* Floating CTA Extended */
.floating-cta {
    flex-direction: column;
    gap: 0.75rem;
}

.floating-cta__btn--booksy {
    background: linear-gradient(135deg, #00c2a8 0%, #00a896 100%);
}

.floating-cta__btn--vod {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.floating-cta__btn--lead {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    cursor: pointer;
}

/* Mobile: tylko 2 najważniejsze przyciski */
@media (max-width: 767px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        gap: 0.6rem;
    }
    
    .floating-cta__btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Ukryj VOD i Lead na małych ekranach */
    .floating-cta__btn--vod,
    .floating-cta__btn--lead {
        display: none;
    }
}

/* Lead Modal */
.lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lead-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.lead-modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lead-modal__close:hover {
    background: var(--color-error);
    color: var(--color-white);
}

/* Lead Form */
.lead-form__step h3 {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.lead-form__step > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.lead-form__options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lead-form__option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lead-form__option:hover {
    background: var(--color-primary-light);
}

.lead-form__option input {
    margin-right: 0.75rem;
    accent-color: var(--color-primary);
}

.lead-form__option input:checked + span {
    font-weight: 600;
}

.lead-form__option:has(input:checked) {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.lead-form__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lead-form__buttons .btn {
    flex: 1;
}

.lead-form__success {
    text-align: center;
    padding: 2rem 0;
}

.lead-form__success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.lead-form .form-group {
    margin-bottom: 1rem;
}

.lead-form .form-input,
.lead-form .form-textarea {
    width: 100%;
}

.lead-form .form-checkbox {
    margin-top: 1rem;
}

/* Google Rating Badge */
.google-rating {
    margin-top: 1.5rem;
}

.google-rating__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
}

.google-rating__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.google-rating__icon {
    width: 20px;
    height: 20px;
}

.google-rating__stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 1px;
}

.google-rating__score {
    color: var(--color-text);
    font-size: 1rem;
}

.google-rating__score strong {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.google-rating__count {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Testimonial Source */
.testimonial__source {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.testimonial__source img {
    opacity: 0.7;
}

/* ==========================================================================
   HERO SLIDER - Strona główna
   Stabilny układ: mobile-first, svh fallback, rozdzielone tryby
   ========================================================================== */

:root {
    --header-height: 60px;
    --hero-min-height: 500px;
}

@media (min-width: 768px) {
    :root {
        --header-height: 70px;
        --hero-min-height: 550px;
    }
}

@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
        --hero-min-height: 600px;
    }
}

/* === HERO CONTAINER === */
.hero-slider {
    position: relative;
    width: 100%;
    /* Fallback dla starszych przeglądarek */
    height: calc(100vh - var(--header-height));
    /* Nowoczesne przeglądarki - svh uwzględnia pasek adresu */
    height: calc(100svh - var(--header-height));
    min-height: var(--hero-min-height);
    max-height: 900px;
    overflow: hidden;
    margin-top: var(--header-height);
    background: var(--color-cream, #f5f0eb);
}

/* Desktop: tło pod peek carousel */
@media (min-width: 1024px) {
    .hero-slider {
        background: linear-gradient(135deg, #e8e0d5 0%, #d4c9bc 50%, #c9bfb2 100%);
    }
}

/* === SLIDES CONTAINER === */
.hero-slider__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* === POJEDYNCZY SLIDE === */
.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.hero-slider__slide.active {
    opacity: 1;
    z-index: 2;
}

/* Desktop: peek carousel */
@media (min-width: 1024px) {
    .hero-slider__slide {
        /* Wyśrodkowany slide 65% szerokości */
        left: 17.5%;
        width: 65%;
        top: 3%;
        height: 94%;
        border-radius: 16px;
        box-shadow: 0 25px 80px rgba(0,0,0,0.25);
        overflow: hidden;
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        transform: scale(0.88);
    }
    
    .hero-slider__slide.active {
        transform: scale(1);
    }
    
    .hero-slider__slide.prev-slide,
    .hero-slider__slide.next-slide {
        opacity: 0.6;
        z-index: 1;
    }
    
    .hero-slider__slide.prev-slide {
        transform: translateX(-82%) scale(0.82);
    }
    
    .hero-slider__slide.next-slide {
        transform: translateX(82%) scale(0.82);
    }
}

/* === OBRAZY === */
.hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Focal point: góra zdjęcia = głowa widoczna */
    object-position: center top;
}

@media (min-width: 1024px) {
    .hero-slider__slide img {
        /* Desktop: lekko niżej aby nie ucinać przy peek */
        object-position: center 15%;
        border-radius: 16px;
    }
}

/* === OVERLAY I COPY === */
.hero-slider__overlay {
    position: absolute;
    inset: 0;
    /* Gradient tylko na dole - nie zakrywa zdjęcia */
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0.55) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem 1.5rem;
    z-index: 5;
}

@media (min-width: 768px) {
    .hero-slider__overlay {
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-slider__overlay {
        /* Desktop: overlay poza zdjęciami */
        background: none;
        padding-bottom: 3rem;
    }
}

/* === CONTENT BOX === */
.hero-slider__content {
    text-align: center;
    color: var(--color-white);
    max-width: 600px;
    z-index: 2;
}

/* Desktop: content ma własne tło */
@media (min-width: 1024px) {
    .hero-slider__content {
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem 2.5rem;
        border-radius: 16px;
        max-width: 700px;
    }
}

/* Badge */
.hero-slider__content .hero__badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

@media (min-width: 768px) {
    .hero-slider__content .hero__badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
    }
}

/* Title */
.hero-slider__content .hero__title {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-slider__content .hero__title span {
    color: var(--color-primary-light);
}

@media (min-width: 768px) {
    .hero-slider__content .hero__title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .hero-slider__content .hero__title {
        font-size: 2.2rem;
        text-shadow: none;
    }
}

/* Text (hidden on mobile) */
.hero-slider__content .hero__text {
    display: none;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-slider__content .hero__text {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-slider__content .hero__text {
        font-size: 1rem;
    }
}

/* Buttons */
.hero-slider__content .hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.hero-slider__content .hero__buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

.hero-slider__content .hero__buttons .btn--primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-slider__content .hero__buttons .btn--secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--color-white);
}

.hero-slider__content .hero__buttons .btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

@media (min-width: 768px) {
    .hero-slider__content .hero__buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* === DOTS === */
.hero-slider__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-slider__dots {
        bottom: 18px;
        gap: 10px;
    }
}

@media (min-width: 1024px) {
    .hero-slider__dots {
        bottom: 20px;
    }
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.hero-slider__dot.active,
.hero-slider__dot:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .hero-slider__dot {
        width: 10px;
        height: 10px;
    }
}

/* === NAVIGATION ARROWS === */
.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.hero-slider__nav:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__nav--prev {
    left: 12px;
}

.hero-slider__nav--next {
    right: 12px;
}

@media (min-width: 768px) {
    .hero-slider__nav {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .hero-slider__nav--prev {
        left: 20px;
    }
    
    .hero-slider__nav--next {
        right: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-slider__nav {
        width: 52px;
        height: 52px;
        background: rgba(255,255,255,0.9);
        color: var(--color-secondary);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .hero-slider__nav:hover {
        background: var(--color-primary);
        color: var(--color-white);
    }
    
    /* Pozycja przy krawędzi głównego slide'a */
    .hero-slider__nav--prev {
        left: calc(17.5% - 26px);
    }
    
    .hero-slider__nav--next {
        right: calc(17.5% - 26px);
    }
}

/* ==========================================================================
   GALERIA ZDJĘĆ - Podstrony usług
   ========================================================================== */

.gallery {
    padding: 4rem 0;
}

.gallery__header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.gallery__subtitle {
    color: var(--color-text-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-caption {
    color: var(--color-white);
    font-size: 0.9rem;
    text-align: center;
}

/* Masonry-like layout for varied image sizes */
.gallery__grid--masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery__grid--masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery__grid--masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery__grid--masonry .gallery__item {
    aspect-ratio: auto;
}

.gallery__grid--masonry .gallery__item img {
    height: auto;
    max-height: 400px;
}

.gallery__grid--masonry .gallery__item:nth-child(3n+1) {
    grid-row: span 2;
}

/* Gallery modal/lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox__close:hover {
    color: var(--color-primary);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.lightbox__nav:hover {
    background: var(--color-primary);
}

.lightbox__nav--prev {
    left: -70px;
}

.lightbox__nav--next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox__nav--prev {
        left: 10px;
    }
    
    .lightbox__nav--next {
        right: 10px;
    }
}

/* Before/After comparison */
.gallery__comparison {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery__comparison-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.gallery__comparison-label--before {
    left: 1rem;
}

.gallery__comparison-label--after {
    right: 1rem;
}

/* Before/After side by side */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.before-after__item {
    position: relative;
}

.before-after__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after__label {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: rgba(0,0,0,0.7);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

/* Gallery with few items - centered */
.gallery__grid--centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery__grid--centered {
        gap: 2rem;
    }
}

.gallery__grid--centered .gallery__item {
    width: 100%;
    max-width: 400px;
    flex: 0 1 auto;
}

@media (min-width: 768px) {
    .gallery__grid--centered .gallery__item {
        width: calc(50% - 1rem);
        max-width: 450px;
    }
}
