/* ===== HOMEPAGE 2025 - ADVANCED STYLES ===== */

/* ===== UNIVERSAL RESET CSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden; /* Zapobiega poziomemu scrollowi */
}

/* CSS Custom Properties */
:root {
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Enhanced Typography */
    --font-display: 'Space Grotesk', 'Oswald', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', 'Lato', sans-serif;
    --font-accent: 'Oswald', sans-serif;
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
    --text-sm: clamp(0.875rem, 2vw, 1rem);
    --text-base: clamp(1rem, 2.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 3vw, 1.25rem);
    --text-xl: clamp(1.25rem, 4vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 5vw, 2rem);
    --text-3xl: clamp(2rem, 6vw, 3rem);
    --text-4xl: clamp(2.5rem, 8vw, 4rem);
    
    /* Enhanced Colors */
    --primary-gradient: linear-gradient(135deg, #ff69b4, #8a2be2);
    --glass-gradient: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(138, 43, 226, 0.3));
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    
    /* Dark Mode Colors */
    --bg-dark: #0a0a0a;
    --bg-card-dark: #171717;
    --border-dark: #404040;
    --text-dark: #f9fafb;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(255, 105, 180, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Colors */
    --accent-color: #ff69b4;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(255, 105, 180, 0.3);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-xs: clamp(0.75rem, 2vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 2.5vw, 1rem);
    --font-size-md: clamp(1rem, 3vw, 1.125rem);
    --font-size-lg: clamp(1.25rem, 4vw, 1.5rem);
    --font-size-xl: clamp(1.5rem, 5vw, 2rem);
    --font-size-2xl: clamp(2rem, 6vw, 3rem);
    --font-size-3xl: clamp(2.5rem, 8vw, 4rem);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* ===== GLOBAL SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* Dark Theme Variables (Default) */
.homepage-2025,
.homepage-2025[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glassmorphism: rgba(255, 255, 255, 0.1);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);
    --border-glow: rgba(255, 105, 180, 0.3);
}

/* Light Theme Variables */
.homepage-2025[data-theme="light"] {
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-dark: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-glassmorphism: rgba(255, 255, 255, 0.9);
    --glassmorphism-border: rgba(0, 0, 0, 0.1);
    --border-glow: rgba(255, 105, 180, 0.2);
    --primary-gradient: linear-gradient(135deg, #ff69b4, #e91e63, #9c27b0, #673ab7);
}

/* Auto theme detection */
@media (prefers-color-scheme: light) {
    .homepage-2025:not([data-theme]) {
        --text-primary: #1a1a1a;
        --text-secondary: #4a4a4a;
        --text-muted: #6a6a6a;
        --bg-dark: #ffffff;
        --bg-card: rgba(255, 255, 255, 0.8);
        --bg-glassmorphism: rgba(255, 255, 255, 0.9);
        --glassmorphism-border: rgba(0, 0, 0, 0.1);
        --border-glow: rgba(255, 105, 180, 0.2);
    }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo-img {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.2em;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    animation: loading-progress 2s ease-out forwards;
}

@keyframes loading-progress {
    to { width: 100%; }
}

/* ===== FIXED HEADER STYLING ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff69b4;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.05em;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8a2be2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: #ff69b4;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff69b4, #8a2be2);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===== FIXED HERO TITLE ===== */
.hero-title {
    font-family: 'Space Grotesk', 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(2.3125rem, 8vw, 4.8125rem);
    line-height: 1.1;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #ff69b4, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

/* ===== FIXED FLIPCARDS TEXT COLOR ===== */
.flip-card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.flip-card-back {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    transform: rotateY(180deg);
}

/* Light mode adjustments for flipcards */
[data-theme="light"] .flip-card-front {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

[data-theme="light"] .flip-card h3 {
    color: #1a1a1a;
}

[data-theme="light"] .flip-card p {
    color: #374151;
}

[data-theme="light"] .card-icon {
    color: #ff69b4;
}

/* ===== FIXED APPROACH HERO SECTION ===== */
.approach-hero {
    margin-top: 5rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.approach-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 105, 180, 0.3));
}

.hero-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
    text-align: center;
    z-index: 10;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-quote .main-philosophy {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    color: #f8f9fa;
}

.hero-quote .call-to-action {
    margin: 1.2rem 0 1rem 0;
}

.hero-quote .call-to-action strong {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.95rem, 2.3vw, 1.15rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff69b4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-quote cite {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    color: #d1d5db;
}

/* ===== CENTERED CTA BUTTONS ===== */
.approach-cta,
.results-cta,
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

[data-theme="light"] .cta-title {
    color: #1a1a1a;
}

/* ===== ENHANCED CONTACT INFO VISIBILITY ===== */
.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    height: fit-content;
}

[data-theme="dark"] .contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-header p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

[data-theme="dark"] .info-header h3 {
    color: #f9fafb;
}

[data-theme="dark"] .info-header p {
    color: #d1d5db;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

[data-theme="dark"] .contact-method {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .contact-method:hover {
    background: rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.4);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-info h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.method-info p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

[data-theme="dark"] .method-info h4 {
    color: #f9fafb;
}

[data-theme="dark"] .method-info p {
    color: #d1d5db;
}

.response-time {
    margin-top: 2rem;
    text-align: center;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

/* ===== FIXED FORM SCALING ===== */
.wizard-form-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

[data-theme="dark"] .wizard-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-step {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 0;
}

/* ===== FIXED FOOTER LOGO SIZE ===== */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #ff69b4;
    margin: 0;
    line-height: 1.2;
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #8a2be2;
    font-weight: 500;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
    align-items: start;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 1rem 0 1.5rem;
    max-width: 400px;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .theme-switcher {
        top: 80px;
        right: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-name {
        font-size: 1.25rem;
    }
    
    .logo-title {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 5.5vw, 2.8rem);
        letter-spacing: -0.015em;
    }
    
        .approach-hero-img {
        height: 300px;
    }

    .hero-quote {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.2rem;
    }
    
    .hero-quote .main-philosophy {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: justify;
    }
    
    .hero-quote .call-to-action {
        margin: 1rem 0 0.8rem 0;
    }
    
    .hero-quote .call-to-action strong {
        font-size: clamp(0.9rem, 3.2vw, 1.05rem);
    }

    .approach-main-quote {
        padding: 2rem 1.5rem;
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        border-radius: 1rem;
    }

    .approach-main-quote::before {
        border-radius: 1rem;
    }

    .approach-call-to-action {
        font-size: clamp(1rem, 4vw, 1.3rem);
        padding: 0.75rem 0;
    }
    
    .wizard-form-container {
        padding: 1.5rem;
    }
    
    .footer-logo-section {
        justify-content: center;
    }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== THEME SWITCHER ===== */
.theme-switcher {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1000;
}

.theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--border-glow);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-medium);
}

.homepage-2025[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

.homepage-2025[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-180deg);
}

/* ===== ENHANCED GLASSMORPHISM STICKY CTA ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(255, 105, 180, 0.2);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
}

.sticky-cta-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(138, 43, 226, 0.3));
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sticky-cta-content:hover .sticky-cta-backdrop {
    opacity: 1;
}

.sticky-cta-icon {
    font-size: 1.25rem;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-2px) scale(1.05); 
        opacity: 1;
    }
}

.sticky-cta-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.sticky-cta-button {
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    isolation: isolate;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
    animation: pulse 1.5s infinite;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sticky-cta-button:hover .cta-glow {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4); }
    50% { box-shadow: 0 15px 35px rgba(255, 105, 180, 0.6); }
}

/* Dark mode adjustments for sticky CTA */
[data-theme="dark"] .sticky-cta-content {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .sticky-cta-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== HERO SECTION 2025 ===== */
.hero-2025 {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 11%; /* Zwiększony odstęp od headera */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

/* Fallback for JavaScript-created particles */
.particle.static-particle {
    z-index: 10 !important;
    opacity: 0.8 !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s infinite ease-in-out;
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.3), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.3), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    border: 1px solid var(--border-glow);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    opacity: 0.1;
    animation: glow-pulse 4s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.hero-title {
    font-family: 'Space Grotesk', 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    margin-bottom: var(--spacing-xs);
}

.title-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    display: none;
}

@keyframes underline-grow {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.subtitle-icon {
    font-size: var(--font-size-xl);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.stat-prefix {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--accent-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--font-size-md);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.cta-button.pulse-animation {
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6), 0 0 0 10px rgba(255, 105, 180, 0.1); }
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active .cta-ripple {
    width: 300px;
    height: 300px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    animation: float-indicator 3s infinite ease-in-out;
}

@keyframes float-indicator {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 1px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.scroll-text {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Image */
.hero-image {
    position: relative;
    max-width: calc(80% - 10px);; /* Zmniejszono z calc(100% - 10px) */
    margin: 0 auto; /* Wyśrodkowanie */
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 0.75rem; /* Dodane padding dla lepszego dopasowania */
    border: 1px solid var(--border-glow);
    width: 100%;
    box-sizing: border-box;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    object-fit: cover;
    transition: transform var(--transition-medium);
    margin: 0; /* Usunięto margin */
}

.image-frame:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 15px;
    mix-blend-mode: overlay;
}

/* Removed hover color effect on hero image */

.image-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--primary-gradient);
    border-radius: 25px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: glow-rotate 8s linear infinite;
}

@keyframes glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    border: 1px solid var(--border-glow);
    animation: float-icon 6s infinite ease-in-out;
    pointer-events: none;
}

.icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: -15%;
    animation-delay: 4s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 400px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .theme-switcher {
        top: 80px;
        right: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-md);
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.cta-button:focus,
.theme-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== GLOBAL SECTION STYLES ===== */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: 'Oswald', 'Poppins', var(--font-primary);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 auto var(--spacing-lg);
}

.section-title .title-line {
    display: block;
    font-size: clamp(1.8rem, 4vw + 1rem, 3.5rem);
}

.section-title .title-highlight {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.2rem, 5vw + 1.2rem, 4.2rem);
    position: relative;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw + 0.8rem, 1.6rem);
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: clamp(1rem, 1.5vw + 0.8rem, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-wrap: balance;
}

/* ===== EXPERIENCE SECTION 2025 ===== */
.experience-section-2025 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    border: 1px solid var(--border-glow);
    margin-bottom: var(--spacing-lg);
    color: var(--accent-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.experience-slider {
    margin: var(--spacing-2xl) 0;
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
}

.slider-track {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    width: 100%;
}

/* Stare reguły .slide zostały usunięte - używamy nowych z about-homepage-style.css */

.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* ===== APPROACH SECTION 2025 ===== */
.approach-section-2025 {
    background: var(--bg-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Mirror background from hero section */
.approach-section-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--bg-dark);
}

.approach-section-2025 .particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.approach-section-2025 .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

/* Fallback for JavaScript-created particles */
.particle.static-particle {
    z-index: 10 !important;
    opacity: 0.8 !important;
}

.approach-section-2025 .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.approach-section-2025 .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s infinite ease-in-out;
    pointer-events: none;
}

.approach-section-2025 .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3), transparent);
    top: 20%;
    right: 10%; /* Mirror position */
    animation-delay: 0s;
}

.approach-section-2025 .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.3), transparent);
    top: 60%;
    left: 20%; /* Mirror position */
    animation-delay: 2s;
}

.approach-section-2025 .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.3), transparent);
    bottom: 20%;
    right: 50%; /* Mirror position */
    animation-delay: 4s;
}

.approach-section-2025 .grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 2;
}

.approach-section-2025 .container {
    position: relative;
    z-index: 3;
}

.approach-section-2025 .section-title {
    font-size: clamp(2rem, 6vw, 3rem); /* Dokładnie taki sam rozmiar jak MOJA METAMORFOZA - var(--text-3xl) */
    font-weight: 800; /* Taka sama grubość jak MOJA METAMORFOZA */
    line-height: 1.1;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 98vw; /* Bardzo szerokie pole tekstowe */
    font-family: var(--font-display); /* Taka sama rodzina czcionki jak MOJA METAMORFOZA */
}

.approach-section-2025 .section-title .title-line {
    display: inline; /* Zmiana z block na inline */
    margin-bottom: 0.3rem;
}

.approach-section-2025 .section-title .title-highlight {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit;
    font-weight: inherit;
    display: inline; /* Fioletowe elementy inline */
    text-decoration: none; /* Usunięcie podkreślenia */
    border-bottom: none; /* Usunięcie podkreślenia */
}

.approach-section-2025 .section-title .title-highlight::after {
    display: none; /* Usunięcie efektu podkreślenia */
}

.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
    padding: 0 1rem;
}

.flip-card {
    height: 270px;
    perspective: 1000px;
    cursor: pointer;
    margin: 0.5rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.flip-card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.flip-card-back {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    transform: rotateY(180deg);
}

.flip-card h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin: 1rem 0 0.5rem;
    line-height: 1.3;
}

.flip-card p {
    font-family: 'Inter', 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.5;
    opacity: 0.9;
}

.card-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #ff69b4;
    filter: drop-shadow(0 4px 8px rgba(255, 105, 180, 0.3));
}

.card-stats {
    margin-top: 1rem;
    text-align: center;
}

.stat-highlight {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    opacity: 0.8;
}



/* ===== RESULTS SECTION 2025 ===== */
.results-section-2025 {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

/* Masonry Gallery for additional transformations */
.masonry-gallery {
    margin-top: var(--spacing-2xl);
    columns: 3;
    column-gap: var(--spacing-lg);
    orphans: 1;
    widows: 1;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform var(--transition-medium);
}

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

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    color: white;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.masonry-item:hover .masonry-content {
    transform: translateY(0);
}

.masonry-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.masonry-description {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* Lazy loading placeholder */
.masonry-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@media (max-width: 768px) {
    .masonry-gallery {
        columns: 2;
        column-gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        columns: 1;
    }
}



/* ===== CONTACT SECTION 2025 ===== */
.contact-section-2025 {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 1) 0%, rgba(8, 8, 12, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Specyficzne style dla sekcji contact */
.contact-section-2025 .section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 98vw;
}

.contact-section-2025 .section-title .title-line {
    display: inline;
    margin-bottom: 0.3rem;
}

.contact-section-2025 .section-title .title-highlight {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit;
    font-weight: inherit;
    display: inline;
    text-decoration: none;
    border-bottom: none;
}

.contact-section-2025 .section-title .title-highlight::after {
    display: none;
}

.contact-section-2025 .particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

/* Fallback for JavaScript-created particles */
.particle.static-particle {
    z-index: 10 !important;
    opacity: 0.8 !important;
}

.contact-section-2025 .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s infinite ease-in-out;
    pointer-events: none;
}

.contact-section-2025 .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.08), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-section-2025 .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.06), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.contact-section-2025 .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.07), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.contact-section-2025 .orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.05), transparent);
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.contact-section-2025 .orb-5 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.09), transparent);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

.contact-section-2025 .grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .container {
    position: relative;
    z-index: 2;
}

/* Specjalne style dla elementów kontaktowych na ciemnym tle */
.contact-section-2025 .contact-info-card {
    background: rgba(65, 65, 75, 0.9) !important;
    border: 1px solid rgba(120, 120, 130, 0.4) !important;
    backdrop-filter: blur(15px);
    margin-right: 25%;
}

.contact-section-2025 .info-header h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .info-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-section-2025 .method-info h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .method-info p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.contact-section-2025 .response-badge {
    background: rgba(76, 175, 80, 0.3) !important;
    color: #81c784 !important;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.contact-section-2025 .method-icon {
    background: linear-gradient(135deg, #333333, #000000) !important;
    color: white !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
    align-items: start;
}

.wizard-form-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.wizard-progress {
    margin-bottom: var(--spacing-xl);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 33.33%;
    transition: width var(--transition-medium);
    border-radius: 3px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    transition: opacity var(--transition-fast);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary-gradient);
    color: white;
}

.step-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-align: center;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-family: 'Inter', 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group input.success {
    border-color: #4caf50;
}

.form-group input.error {
    border-color: #f44336;
}

.input-feedback {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: #f44336;
}

.radio-group.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-content {
    padding: var(--spacing-md);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.radio-content i {
    font-size: 24px;
    color: var(--accent-color);
}

.select-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.select-card {
    position: relative;
    cursor: pointer;
}

.select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.select-card input[type="radio"]:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-5px);
}

.card-content i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.card-content h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.card-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.checkbox-group.modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.checkbox-content i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: var(--spacing-xs);
}

.checkbox-text h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.checkbox-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-glow);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-btn.prev {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
}

.nav-btn.next {
    background: var(--primary-gradient);
    color: white;
}

.nav-btn.submit {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-2xl);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-btn:active .submit-ripple {
    width: 300px;
    height: 300px;
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-xl);
    height: fit-content;
}

.info-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.info-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-header p {
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

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

.method-info h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.method-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.response-time {
    text-align: center;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: var(--text-primary);
}

.success-animation {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: var(--spacing-lg);
    animation: success-bounce 0.8s ease-out;
}

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

.modal-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.modal-close {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* ===== CONTACT FORM POLISH OVERRIDES (2025-09-26) ===== */
.wizard-form input[type="text"],
.wizard-form input[type="email"],
.wizard-form input[type="number"],
.wizard-form select,
.wizard-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.9rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.wizard-form input:focus,
.wizard-form select:focus,
.wizard-form textarea:focus {
    outline: none;
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15), 0 0 0 1px rgba(138, 43, 226, 0.25) inset;
    background: rgba(255, 255, 255, 0.06);
}

.wizard-form .input-feedback {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    margin-top: 6px;
    color: #ff6b6b;
    line-height: 1.4;
}

.validation-message {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 71, 87, 0.10);
    border-left: 3px solid rgba(255, 71, 87, 0.8);
    border-radius: 10px;
    color: #ff6b6b;
}

.success-modal .modal-content,
.success-modal .modal-close {
    font-family: 'Inter', sans-serif;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image-container {
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 105, 180, 0.8);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    pointer-events: all;
}

.lightbox-btn:hover {
    background: rgba(255, 105, 180, 0.8);
}

/* ===== RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 500px;
    }
    
    .slide-content {
        order: 2;
        padding: var(--spacing-lg);
    }
    
    .slide-image {
        order: 1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-3xl: clamp(2rem, 8vw, 2.5rem);
        --font-size-2xl: clamp(1.5rem, 6vw, 2rem);
        --font-size-xl: clamp(1.25rem, 5vw, 1.5rem);
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-image {
        max-width: 440px;
    }
    
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .flip-card {
        height: 250px;
    }
    
    .transformations-container {
        height: 500px;
    }
    
    .transformation-slide {
        grid-template-columns: 1fr;
    }
    
    .transformation-images {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .transformation-content {
        padding: var(--spacing-lg);
        order: 1;
    }
    
    .client-name {
        font-size: var(--font-size-xl);
    }
    
    .transformations-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .select-cards {
        grid-template-columns: 1fr;
    }
    
    .radio-group.modern {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .step {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-label {
        text-align: left;
        margin-left: var(--spacing-sm);
    }
    
    .theme-switcher {
        top: 80px;
        right: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .approach-hero-img {
        height: 300px;
    }
    
    .hero-quote {
        left: var(--spacing-md);
        right: var(--spacing-md);
        bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
    }
    
    .hero-container,
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-md);
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        max-width: 400px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .wizard-form-container,
    .contact-info-card {
        padding: var(--spacing-lg);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .slider-dots {
        order: -1;
    }
    
    .transformations-container {
        height: 400px;
    }
    
    .transformation-content {
        padding: var(--spacing-md);
    }
    
    .client-name {
        font-size: var(--font-size-lg);
    }
    
    .transformations-navigation {
        margin-top: var(--spacing-md);
    }
    
    .transformation-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== DARK/LIGHT THEME SPECIFIC STYLES ===== */
.homepage-2025[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-card: rgba(0, 0, 0, 0.05);
    --border-glow: rgba(255, 105, 180, 0.2);
}

.homepage-2025[data-theme="light"] .grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.homepage-2025[data-theme="light"] .particle {
    background: rgba(255, 105, 180, 0.8);
}

.homepage-2025[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(156, 39, 176, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-3 {
    background: radial-gradient(circle, rgba(103, 58, 183, 0.2), transparent);
}

/* ===== PRINT STYLES ===== */
@media print {
    .loading-screen,
    .theme-switcher,
    .sticky-cta-bar,
    .floating-elements,
    .particles-container,
    .gradient-orbs,
    .hero-scroll-indicator,
    .slider-navigation,
    .gallery-filter,
    .lightbox-modal,
    .success-modal {
        display: none !important;
    }
    
    .hero-2025,
    .experience-section-2025,
    .approach-section-2025,
    .results-section-2025,
    .contact-section-2025 {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
    
    .cta-button {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --bg-dark: #000000;
        --border-glow: #ffffff;
        --primary-gradient: linear-gradient(135deg, #ffffff, #ffffff);
        --accent-color: #ffffff;
    }
    
    .cta-button.primary {
        background: #ffffff;
        color: #000000;
    }
    
    .transformation-card,
    .flip-card-front,
    .flip-card-back,
    .wizard-form-container,
    .contact-info-card {
        border: 2px solid #ffffff;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles-container,
    .gradient-orbs,
    .floating-elements {
        display: none;
    }
    
    .hero-scroll-indicator {
        animation: none;
    }
    
    .loading-screen {
        display: none;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.cta-button:focus,
.theme-toggle:focus,
.nav-btn:focus,
.filter-btn:focus,
.slider-btn:focus,
.contact-method:focus,
.transformation-card:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 1px;
}

/* ===== LOADING STATES ===== */
.loading-skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-2025,
.experience-section-2025,
.approach-section-2025,
.results-section-2025,
.contact-section-2025 {
    contain: layout style paint;
}

.transformation-img,
.hero-img,
.slide-image img,
.approach-hero-img {
    content-visibility: auto;
    contain-intrinsic-size: 250px;
}

/* ===== BROWSER SPECIFIC FIXES ===== */
/* Safari */
@supports (-webkit-appearance: none) {
    .backdrop-filter {
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Firefox */
@-moz-document url-prefix() {
    .flip-card-inner {
        transform-style: preserve-3d;
    }
}

/* Edge */
@supports (-ms-ime-align: auto) {
    .grid-pattern {
        background-attachment: local;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff69b4, #8a2be2, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ff69b4;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #8a2be2;
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 1rem 0 1.5rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #f9fafb;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-info p,
.footer-nav a {
    font-family: 'Inter', 'Rubik', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a:hover,
.contact-info p:hover {
    color: #f9fafb;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    transform: translateX(4px);
}

.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.social-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-glow {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.theme-toggle-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle-footer:hover {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    transform: rotate(180deg);
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== ENHANCED DARK MODE SUPPORT ===== */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

[data-theme="dark"] .footer-tagline {
    color: #e5e7eb;
}

[data-theme="dark"] .contact-info p,
[data-theme="dark"] .footer-nav a {
    color: #d1d5db;
}

[data-theme="dark"] .footer-bottom {
    color: #d1d5db;
}

/* ===== ENHANCED FORM DARK MODE ===== */
[data-theme="dark"] .wizard-form-container {
    background: #171717;
    border-color: #404040;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #737373;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

[data-theme="dark"] .radio-card,
[data-theme="dark"] .select-card,
[data-theme="dark"] .checkbox-card {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .radio-card:hover,
[data-theme="dark"] .select-card:hover,
[data-theme="dark"] .checkbox-card:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2);
}



/* ===== CONTACT SECTION 2025 ===== */
.contact-section-2025 {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 1) 0%, rgba(8, 8, 12, 1) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-2025 .particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
    z-index: 10;
}

/* Fallback for JavaScript-created particles */
.particle.static-particle {
    z-index: 10 !important;
    opacity: 0.8 !important;
}

.contact-section-2025 .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s infinite ease-in-out;
    pointer-events: none;
}

.contact-section-2025 .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.08), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-section-2025 .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.06), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.contact-section-2025 .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.07), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.contact-section-2025 .orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.05), transparent);
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.contact-section-2025 .orb-5 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.09), transparent);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

.contact-section-2025 .grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .container {
    position: relative;
    z-index: 2;
}

/* Specjalne style dla elementów kontaktowych na ciemnym tle */
.contact-section-2025 .contact-info-card {
    background: rgba(65, 65, 75, 0.9) !important;
    border: 1px solid rgba(120, 120, 130, 0.4) !important;
    backdrop-filter: blur(15px);
    margin-right: 25%;
}

.contact-section-2025 .info-header h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .info-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-section-2025 .method-info h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .method-info p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.contact-section-2025 .response-badge {
    background: rgba(76, 175, 80, 0.3) !important;
    color: #81c784 !important;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.contact-section-2025 .method-icon {
    background: linear-gradient(135deg, #333333, #000000) !important;
    color: white !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
    align-items: start;
}

.wizard-form-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.wizard-progress {
    margin-bottom: var(--spacing-xl);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 33.33%;
    transition: width var(--transition-medium);
    border-radius: 3px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    transition: opacity var(--transition-fast);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary-gradient);
    color: white;
}

.step-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-align: center;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-family: 'Inter', 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group input.success {
    border-color: #4caf50;
}

.form-group input.error {
    border-color: #f44336;
}

.input-feedback {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: #f44336;
}

.radio-group.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-content {
    padding: var(--spacing-md);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.radio-content i {
    font-size: 24px;
    color: var(--accent-color);
}

.select-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.select-card {
    position: relative;
    cursor: pointer;
}

.select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.select-card input[type="radio"]:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-5px);
}

.card-content i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.card-content h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.card-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.checkbox-group.modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.checkbox-content i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: var(--spacing-xs);
}

.checkbox-text h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.checkbox-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-glow);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-btn.prev {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
}

.nav-btn.next {
    background: var(--primary-gradient);
    color: white;
}

.nav-btn.submit {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-2xl);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-btn:active .submit-ripple {
    width: 300px;
    height: 300px;
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-xl);
    height: fit-content;
}

.info-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.info-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-header p {
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

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

.method-info h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.method-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.response-time {
    text-align: center;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: var(--text-primary);
}

.success-animation {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: var(--spacing-lg);
    animation: success-bounce 0.8s ease-out;
}

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

.modal-content h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.modal-close {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image-container {
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 105, 180, 0.8);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    pointer-events: all;
}

.lightbox-btn:hover {
    background: rgba(255, 105, 180, 0.8);
}

/* ===== RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 500px;
    }
    
    .slide-content {
        order: 2;
        padding: var(--spacing-lg);
    }
    
    .slide-image {
        order: 1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-3xl: clamp(2rem, 8vw, 2.5rem);
        --font-size-2xl: clamp(1.5rem, 6vw, 2rem);
        --font-size-xl: clamp(1.25rem, 5vw, 1.5rem);
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-image {
        max-width: 440px;
    }
    
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .flip-card {
        height: 250px;
    }
    
    .transformations-container {
        height: 500px;
    }
    
    .transformation-slide {
        grid-template-columns: 1fr;
    }
    
    .transformation-images {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .transformation-content {
        padding: var(--spacing-lg);
        order: 1;
    }
    
    .client-name {
        font-size: var(--font-size-xl);
    }
    
    .transformations-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .select-cards {
        grid-template-columns: 1fr;
    }
    
    .radio-group.modern {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .step {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-label {
        text-align: left;
        margin-left: var(--spacing-sm);
    }
    
    .theme-switcher {
        top: 80px;
        right: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .approach-hero-img {
        height: 300px;
    }
    
    .hero-quote {
        left: var(--spacing-md);
        right: var(--spacing-md);
        bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
    }
    
    .hero-container,
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-md);
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        max-width: 400px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .wizard-form-container,
    .contact-info-card {
        padding: var(--spacing-lg);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .slider-dots {
        order: -1;
    }
    
    .transformations-container {
        height: 400px;
    }
    
    .transformation-content {
        padding: var(--spacing-md);
    }
    
    .client-name {
        font-size: var(--font-size-lg);
    }
    
    .transformations-navigation {
        margin-top: var(--spacing-md);
    }
    
    .transformation-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== DARK/LIGHT THEME SPECIFIC STYLES ===== */
.homepage-2025[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-card: rgba(0, 0, 0, 0.05);
    --border-glow: rgba(255, 105, 180, 0.2);
}

.homepage-2025[data-theme="light"] .grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.homepage-2025[data-theme="light"] .particle {
    background: rgba(255, 105, 180, 0.8);
}

.homepage-2025[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(156, 39, 176, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-3 {
    background: radial-gradient(circle, rgba(103, 58, 183, 0.2), transparent);
}

/* ===== PRINT STYLES ===== */
@media print {
    .loading-screen,
    .theme-switcher,
    .sticky-cta-bar,
    .floating-elements,
    .particles-container,
    .gradient-orbs,
    .hero-scroll-indicator,
    .slider-navigation,
    .gallery-filter,
    .lightbox-modal,
    .success-modal {
        display: none !important;
    }
    
    .hero-2025,
    .experience-section-2025,
    .approach-section-2025,
    .results-section-2025,
    .contact-section-2025 {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
    
    .cta-button {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --bg-dark: #000000;
        --border-glow: #ffffff;
        --primary-gradient: linear-gradient(135deg, #ffffff, #ffffff);
        --accent-color: #ffffff;
    }
    
    .cta-button.primary {
        background: #ffffff;
        color: #000000;
    }
    
    .transformation-card,
    .flip-card-front,
    .flip-card-back,
    .wizard-form-container,
    .contact-info-card {
        border: 2px solid #ffffff;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles-container,
    .gradient-orbs,
    .floating-elements {
        display: none;
    }
    
    .hero-scroll-indicator {
        animation: none;
    }
    
    .loading-screen {
        display: none;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.cta-button:focus,
.theme-toggle:focus,
.nav-btn:focus,
.filter-btn:focus,
.slider-btn:focus,
.contact-method:focus,
.transformation-card:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 1px;
}

/* ===== LOADING STATES ===== */
.loading-skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-2025,
.experience-section-2025,
.approach-section-2025,
.results-section-2025,
.contact-section-2025 {
    contain: layout style paint;
}

.transformation-img,
.hero-img,
.slide-image img,
.approach-hero-img {
    content-visibility: auto;
    contain-intrinsic-size: 250px;
}

/* ===== BROWSER SPECIFIC FIXES ===== */
/* Safari */
@supports (-webkit-appearance: none) {
    .backdrop-filter {
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Firefox */
@-moz-document url-prefix() {
    .flip-card-inner {
        transform-style: preserve-3d;
    }
}

/* Edge */
@supports (-ms-ime-align: auto) {
    .grid-pattern {
        background-attachment: local;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff69b4, #8a2be2, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ff69b4;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #8a2be2;
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 1rem 0 1.5rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #f9fafb;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-info p,
.footer-nav a {
    font-family: 'Inter', 'Rubik', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a:hover,
.contact-info p:hover {
    color: #f9fafb;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    transform: translateX(4px);
}

.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.social-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-glow {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.theme-toggle-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle-footer:hover {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    transform: rotate(180deg);
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== ENHANCED DARK MODE SUPPORT ===== */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

[data-theme="dark"] .footer-tagline {
    color: #e5e7eb;
}

[data-theme="dark"] .contact-info p,
[data-theme="dark"] .footer-nav a {
    color: #d1d5db;
}

[data-theme="dark"] .footer-bottom {
    color: #d1d5db;
}

/* ===== ENHANCED FORM DARK MODE ===== */
[data-theme="dark"] .wizard-form-container {
    background: #171717;
    border-color: #404040;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #737373;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

[data-theme="dark"] .radio-card,
[data-theme="dark"] .select-card,
[data-theme="dark"] .checkbox-card {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .radio-card:hover,
[data-theme="dark"] .select-card:hover,
[data-theme="dark"] .checkbox-card:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2);
}



/* ===== CONTACT SECTION 2025 ===== */
.contact-section-2025 {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 1) 0%, rgba(8, 8, 12, 1) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-2025 .particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
}

.contact-section-2025 .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 8s infinite ease-in-out;
    pointer-events: none;
}

.contact-section-2025 .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.08), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-section-2025 .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.06), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.contact-section-2025 .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.07), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.contact-section-2025 .orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.05), transparent);
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.contact-section-2025 .orb-5 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.09), transparent);
    bottom: 40%;
    right: 10%;
    animation-delay: 3s;
}

.contact-section-2025 .grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.contact-section-2025 .container {
    position: relative;
    z-index: 2;
}

/* Specjalne style dla elementów kontaktowych na ciemnym tle */
.contact-section-2025 .contact-info-card {
    background: rgba(65, 65, 75, 0.9) !important;
    border: 1px solid rgba(120, 120, 130, 0.4) !important;
    backdrop-filter: blur(15px);
    margin-right: 25%;
}

.contact-section-2025 .info-header h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .info-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-section-2025 .method-info h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section-2025 .method-info p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.contact-section-2025 .response-badge {
    background: rgba(76, 175, 80, 0.3) !important;
    color: #81c784 !important;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.contact-section-2025 .method-icon {
    background: linear-gradient(135deg, #333333, #000000) !important;
    color: white !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
    align-items: start;
}

.wizard-form-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.wizard-progress {
    margin-bottom: var(--spacing-xl);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 33.33%;
    transition: width var(--transition-medium);
    border-radius: 3px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    transition: opacity var(--transition-fast);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary-gradient);
    color: white;
}

.step-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-align: center;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-family: 'Inter', 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group input.success {
    border-color: #4caf50;
}

.form-group input.error {
    border-color: #f44336;
}

.input-feedback {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: #f44336;
}

.radio-group.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-content {
    padding: var(--spacing-md);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.radio-content i {
    font-size: 24px;
    color: var(--accent-color);
}

.select-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.select-card {
    position: relative;
    cursor: pointer;
}

.select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.select-card input[type="radio"]:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-5px);
}

.card-content i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.card-content h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.card-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.checkbox-group.modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
}

.checkbox-content i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: var(--spacing-xs);
}

.checkbox-text h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.checkbox-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-glow);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-btn.prev {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
}

.nav-btn.next {
    background: var(--primary-gradient);
    color: white;
}

.nav-btn.submit {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-2xl);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-btn:active .submit-ripple {
    width: 300px;
    height: 300px;
}

.contact-info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-xl);
    height: fit-content;
}

.info-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.info-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-header p {
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

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

.method-info h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.method-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.response-time {
    text-align: center;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: var(--text-primary);
}

.success-animation {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: var(--spacing-lg);
    animation: success-bounce 0.8s ease-out;
}

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

.modal-content h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.modal-close {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image-container {
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 105, 180, 0.8);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    pointer-events: all;
}

.lightbox-btn:hover {
    background: rgba(255, 105, 180, 0.8);
}

/* ===== RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 500px;
    }
    
    .slide-content {
        order: 2;
        padding: var(--spacing-lg);
    }
    
    .slide-image {
        order: 1;
        height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-3xl: clamp(2rem, 8vw, 2.5rem);
        --font-size-2xl: clamp(1.5rem, 6vw, 2rem);
        --font-size-xl: clamp(1.25rem, 5vw, 1.5rem);
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-image {
        max-width: 440px;
    }
    
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .flip-card {
        height: 250px;
    }
    
    .transformations-container {
        height: 500px;
    }
    
    .transformation-slide {
        grid-template-columns: 1fr;
    }
    
    .transformation-images {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .transformation-content {
        padding: var(--spacing-lg);
        order: 1;
    }
    
    .client-name {
        font-size: var(--font-size-xl);
    }
    
    .transformations-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .select-cards {
        grid-template-columns: 1fr;
    }
    
    .radio-group.modern {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .step {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-label {
        text-align: left;
        margin-left: var(--spacing-sm);
    }
    
    .theme-switcher {
        top: 80px;
        right: 1rem;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .approach-hero-img {
        height: 300px;
    }
    
    .hero-quote {
        left: var(--spacing-md);
        right: var(--spacing-md);
        bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
    }
    
    .hero-container,
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-md);
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        max-width: 400px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .wizard-form-container,
    .contact-info-card {
        padding: var(--spacing-lg);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-navigation {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .slider-dots {
        order: -1;
    }
    
    .transformations-container {
        height: 400px;
    }
    
    .transformation-content {
        padding: var(--spacing-md);
    }
    
    .client-name {
        font-size: var(--font-size-lg);
    }
    
    .transformations-navigation {
        margin-top: var(--spacing-md);
    }
    
    .transformation-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== DARK/LIGHT THEME SPECIFIC STYLES ===== */
.homepage-2025[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-card: rgba(0, 0, 0, 0.05);
    --border-glow: rgba(255, 105, 180, 0.2);
}

.homepage-2025[data-theme="light"] .grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.homepage-2025[data-theme="light"] .particle {
    background: rgba(255, 105, 180, 0.8);
}

.homepage-2025[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(156, 39, 176, 0.2), transparent);
}

.homepage-2025[data-theme="light"] .orb-3 {
    background: radial-gradient(circle, rgba(103, 58, 183, 0.2), transparent);
}

/* ===== PRINT STYLES ===== */
@media print {
    .loading-screen,
    .theme-switcher,
    .sticky-cta-bar,
    .floating-elements,
    .particles-container,
    .gradient-orbs,
    .hero-scroll-indicator,
    .slider-navigation,
    .gallery-filter,
    .lightbox-modal,
    .success-modal {
        display: none !important;
    }
    
    .hero-2025,
    .experience-section-2025,
    .approach-section-2025,
    .results-section-2025,
    .contact-section-2025 {
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
    
    .cta-button {
        border: 2px solid black !important;
        background: white !important;
        color: black !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --bg-dark: #000000;
        --border-glow: #ffffff;
        --primary-gradient: linear-gradient(135deg, #ffffff, #ffffff);
        --accent-color: #ffffff;
    }
    
    .cta-button.primary {
        background: #ffffff;
        color: #000000;
    }
    
    .transformation-card,
    .flip-card-front,
    .flip-card-back,
    .wizard-form-container,
    .contact-info-card {
        border: 2px solid #ffffff;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particles-container,
    .gradient-orbs,
    .floating-elements {
        display: none;
    }
    
    .hero-scroll-indicator {
        animation: none;
    }
    
    .loading-screen {
        display: none;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.cta-button:focus,
.theme-toggle:focus,
.nav-btn:focus,
.filter-btn:focus,
.slider-btn:focus,
.contact-method:focus,
.transformation-card:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 1px;
}

/* ===== LOADING STATES ===== */
.loading-skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-2025,
.experience-section-2025,
.approach-section-2025,
.results-section-2025,
.contact-section-2025 {
    contain: layout style paint;
}

.transformation-img,
.hero-img,
.slide-image img,
.approach-hero-img {
    content-visibility: auto;
    contain-intrinsic-size: 250px;
}

/* ===== BROWSER SPECIFIC FIXES ===== */
/* Safari */
@supports (-webkit-appearance: none) {
    .backdrop-filter {
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Firefox */
@-moz-document url-prefix() {
    .flip-card-inner {
        transform-style: preserve-3d;
    }
}

/* Edge */
@supports (-ms-ime-align: auto) {
    .grid-pattern {
        background-attachment: local;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff69b4, #8a2be2, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ff69b4;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #8a2be2;
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 1rem 0 1.5rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #f9fafb;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-info p,
.footer-nav a {
    font-family: 'Inter', 'Rubik', sans-serif;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a:hover,
.contact-info p:hover {
    color: #f9fafb;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    transform: translateX(4px);
}

.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.social-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-glow {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.theme-toggle-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle-footer:hover {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: white;
    transform: rotate(180deg);
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== ENHANCED DARK MODE SUPPORT ===== */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

[data-theme="dark"] .footer-tagline {
    color: #e5e7eb;
}

[data-theme="dark"] .contact-info p,
[data-theme="dark"] .footer-nav a {
    color: #d1d5db;
}

[data-theme="dark"] .footer-bottom {
    color: #d1d5db;
}

/* ===== ENHANCED FORM DARK MODE ===== */
[data-theme="dark"] .wizard-form-container {
    background: #171717;
    border-color: #404040;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #737373;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

[data-theme="dark"] .radio-card,
[data-theme="dark"] .select-card,
[data-theme="dark"] .checkbox-card {
    background: #262626;
    border-color: #404040;
    color: #f9fafb;
}

[data-theme="dark"] .radio-card:hover,
[data-theme="dark"] .select-card:hover,
[data-theme="dark"] .checkbox-card:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2);
}

/* ===== ENHANCED GALLERY MASONRY LAYOUT ===== */


/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .sticky-cta-content {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .sticky-cta-text {
        font-size: 0.75rem;
    }
    
    .sticky-cta-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .sticky-cta-bar {
        bottom: 0;
        z-index: 50;
        position: fixed;
        width: 100%;
    }
    
    .wizard-form-container {
        padding: 1.5rem;
        margin-bottom: 5rem; /* Space for sticky CTA */
    }
    
    .transformation-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ENHANCED CUSTOM PROPERTIES (continued) ===== */

/* Dark Theme Variables */
[data-theme="dark"] {
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-muted: #d1d5db;
}

/* Auto Theme Detection */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --glass-bg: rgba(0, 0, 0, 0.3);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #f9fafb;
        --text-secondary: #e5e7eb;
        --text-muted: #d1d5db;
    }
}

/* ===== GLOBAL SECTION STYLES ===== */
.section-2025 {
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: transparent;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-4xl);
    line-height: 1.1;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Container Improvements */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ===== ENHANCED EXPERIENCE SECTION TYPOGRAPHY ===== */
.experience-section-2025 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    isolation: isolate;
}

.experience-section-2025::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    z-index: -1;
}

.experience-section-2025 .section-title {
    font-family: var(--font-accent);
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: var(--text-4xl);
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.experience-section-2025 .section-description {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== ENHANCED INTERACTIVE GALLERY ===== */
.experience-slider {
    position: relative;
    max-width: 100%;
    margin: 0;
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

/* Stare reguły .slide zostały usunięte - używamy nowych z about-homepage-style.css */

.slide-content h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9),
        2px 2px 0px rgba(0, 0, 0, 0.8),
        -2px -2px 0px rgba(0, 0, 0, 0.8),
        2px -2px 0px rgba(0, 0, 0, 0.8),
        -2px 2px 0px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 0px rgba(0, 0, 0, 0.7),
        -1px -1px 0px rgba(0, 0, 0, 0.7),
        1px -1px 0px rgba(0, 0, 0, 0.7),
        -1px 1px 0px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.slide-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: #ff69b4;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9),
        2px 2px 0px rgba(0, 0, 0, 0.8),
        -2px -2px 0px rgba(0, 0, 0, 0.8),
        2px -2px 0px rgba(0, 0, 0, 0.8),
        -2px 2px 0px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.stat-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.8),
        1px 1px 0px rgba(0, 0, 0, 0.7),
        -1px -1px 0px rgba(0, 0, 0, 0.7),
        1px -1px 0px rgba(0, 0, 0, 0.7),
        -1px 1px 0px rgba(0, 0, 0, 0.7);
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 105, 180, 0.3),
        0 0 20px rgba(255, 105, 180, 0.2);
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.6),
        1px 1px 0px rgba(0, 0, 0, 0.5),
        -1px -1px 0px rgba(0, 0, 0, 0.5);
}

.slide-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.4),
        0 0 30px rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, #ff1493, #9932cc);
}

.slide-cta i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.slide-cta:hover i {
    transform: translateX(3px);
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: #ff69b4;
    transform: scale(1.25);
}

/* ===== CAROUSEL NAVIGATION IMPROVEMENTS ===== */
.transformations-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.transformation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1.5rem;
}

.transformation-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.transformation-dots {
    display: flex;
    gap: 1rem;
}

.transformation-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.transformation-dot.active {
    background: #ff69b4;
    transform: scale(1.3);
}

.transformation-dot:hover {
    background: rgba(255, 105, 180, 0.7);
    transform: scale(1.2);
}

.transformation-dot.active::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===== ENHANCED LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: opacity var(--transition-fast);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 3rem;
    height: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-btn {
    width: 3rem;
    height: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    pointer-events: auto;
}

.lightbox-btn:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
}

/* ===== IMPROVED RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --text-4xl: clamp(2rem, 7vw, 3rem);
        --text-3xl: clamp(1.75rem, 6vw, 2.5rem);
        --text-2xl: clamp(1.5rem, 5vw, 2rem);
    }
    
    .experience-slider {
        margin: 0 1rem;
    }
    
    .flip-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-2025 {
        padding: clamp(3rem, 6vw, 6rem) 0;
    }
    
    .experience-slider {
        margin: 0 0.5rem;
        border-radius: 1rem;
    }
    
    .slider-container {
        height: 450px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.75rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.875rem;
    }
    
    .slider-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .slider-dots {
        gap: 0.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-navigation {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .sticky-cta-icon {
        animation: none;
    }
    
    .transformation-dot.active::before {
        animation: none;
    }
}

/* Focus indicators */
.slider-btn:focus,
.transformation-btn:focus,
.lightbox-btn:focus,
.sticky-cta-button:focus {
    outline: 2px solid #ff69b4;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-badge,
    .flip-card-front,
    .slider-btn,
    .transformation-btn {
        border-width: 2px;
        border-color: currentColor;
    }
}

/* ===== TRANSFORMATIONS SECTION 2025 ===== */
.transformations-section-2025 {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.transformations-section-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 105, 180, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Gallery Container */
.transformations-gallery {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 600px;
}



/* Transformation Slides */
.transformation-slide {
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}



.transformation-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.progress-gallery {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.progress-img {
    width: 400px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transform-origin: center center;
}

.progress-img:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-pink);
    box-shadow: 0 30px 60px rgba(255, 105, 180, 0.4);
}

.progress-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-img:hover::before {
    opacity: 1;
}

/* Client Name */
.client-name {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: capitalize;
    font-style: normal;
    position: relative;
    z-index: 10;
}

/* Gradient text for supporting browsers */
@supports (-webkit-background-clip: text) {
    .client-name {
        background: linear-gradient(135deg, #ffffff, #ff69b4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}



/* Gallery Navigation */
.gallery-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
}

.gallery-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.gallery-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    transition: transform 0.3s ease;
}

.gallery-dot.active {
    background: transparent;
}

.gallery-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-dot:hover {
    transform: scale(1.2);
}

/* Auto-play indicator */
.gallery-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    animation: autoPlayIndicator 6s linear infinite;
}

@keyframes autoPlayIndicator {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.8;
    }
}

/* Results CTA */
.results-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.results-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .progress-img {
        width: 360px;
        height: 470px;
    }
    
    .client-name {
        font-size: 3rem;
        letter-spacing: 1px;
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .transformations-section-2025 {
        padding: 60px 0;
    }
    
    .transformation-slide {
        padding: 3rem 1rem;
        min-height: 400px;
    }
    
    .progress-gallery {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .progress-img {
        width: 300px;
        height: 390px;
    }
    
    .client-name {
        font-size: 2.8rem;
        letter-spacing: 1px;
        padding: 0.5rem 0;
    }
    
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .gallery-navigation {
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .transformation-slide {
        padding: 2rem 1rem;
        min-height: 350px;
    }
    
    .progress-gallery {
        gap: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .progress-img {
        width: 260px;
        height: 340px;
    }
    
    .client-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
        padding: 0.5rem 0;
    }
}

/* Loading states */
.transformation-slide.loading {
    opacity: 0.5;
    pointer-events: none;
}

.progress-img.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .transformation-slide,
    .progress-img,
    .gallery-btn,
    .gallery-dot {
        transition: none;
    }
    
    .gallery-dot.active::after {
        animation: none;
    }
    
    @keyframes autoPlayIndicator {
        0%, 100% {
            transform: none;
            opacity: 0.5;
        }
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .gallery-container {
        border: 2px solid white;
    }
    
    .progress-img {
        border: 2px solid white;
    }
    
    .client-name,
    .transformation-goal {
        color: white;
        -webkit-text-fill-color: white;
    }
}

/* ===== STATIC PARTICLES SYSTEM ===== */
/* All interactive effects removed - particles are now static decorative elements */

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .orb {
        transition: none;
        animation: none;
    }
}

/* ===== MOBILE OPTIMIZATION - COMPLETE REWRITE ===== */
/* Removing all duplicate media queries and creating perfect mobile experience */

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .hero-image {
        max-width: 480px;
        order: 1;
    }
    
    .hero-content {
        order: 2;
    }
    
    /* Contact section adjustments */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* ===== TABLET & SMALL DESKTOP OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* CSS Variables for mobile */
    :root {
        --font-size-3xl: clamp(2rem, 8vw, 3rem);
        --font-size-2xl: clamp(1.5rem, 6vw, 2.2rem);
        --font-size-xl: clamp(1.2rem, 5vw, 1.6rem);
        --font-size-lg: clamp(1rem, 4vw, 1.3rem);
        --spacing-2xl: 2.5rem;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }

    /* ===== NAVIGATION MOBILE ===== */
    .nav-container {
        padding: 1rem 1.5rem;
        height: 70px;
        position: relative;
        z-index: 1001;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        font-size: 1.1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        z-index: 1002;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ===== HERO SECTION MOBILE OPTIMIZATION ===== */
    .hero-2025 {
        min-height: 100vh;
        padding: 70px 0 0 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: calc(100vh - 70px);
        align-items: center;
    }
    
    .hero-content {
        order: 2;
        max-width: 100%;
    }
    
    .hero-image {
        order: 1;
        max-width: 420px;
        margin: 0 auto;
    }
    
    /* ===== HERO TITLE MOBILE ===== */
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .title-highlight {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    /* ===== HERO SUBTITLE MOBILE ===== */
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        line-height: 1.4;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
    }
    
    /* ===== HERO STATS MOBILE ===== */
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-radius: 16px;
        background: var(--bg-card);
        backdrop-filter: blur(15px);
        border: 1px solid var(--border-glow);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    }
    
    .stat-prefix {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* ===== HERO CTA MOBILE ===== */
    .hero-cta {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        justify-content: center;
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .cta-button.primary {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    }
    
    .cta-button.primary:hover,
    .cta-button.primary:active {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
    }
    
    .cta-button.secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
    }
    
    .cta-button.secondary:hover,
    .cta-button.secondary:active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
    
    /* ===== HERO SCROLL INDICATOR MOBILE ===== */
    .hero-scroll-indicator {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        opacity: 0.8;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        position: relative;
    }
    
    .scroll-wheel {
        width: 3px;
        height: 6px;
        background: var(--accent-color);
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll-wheel 2s infinite;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* ===== STATIC PARTICLES MOBILE OPTIMIZATION ===== */
    .orb {
        transition: all 0.3s ease;
        filter: blur(30px) !important; /* Reduced blur for better mobile performance */
    }
    
    /* ===== FLOATING ICONS MOBILE ===== */
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .floating-icon:hover,
    .floating-icon:active {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* ===== FORM AND NAVIGATION MOBILE ===== */
    .select-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .radio-group.modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .step {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
    }
    
    .step-label {
        text-align: left;
        font-size: 0.9rem;
    }
    
    /* ===== TRANSFORMATIONS MOBILE ===== */
    .transformations-container {
        height: auto;
        min-height: 500px;
    }
    
    .transformation-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .transformation-images {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .transformation-content {
        order: 2;
        padding: 1.5rem;
    }
    
    .client-name {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .transformations-navigation {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* ===== CONTACT SECTION MOBILE ===== */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wizard-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
}

/* ===== SMALL MOBILE PHONES OPTIMIZATION ===== */
@media (max-width: 480px) {
    /* CSS Variables for small mobile */
    :root {
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
        --spacing-md: 0.8rem;
    }
    
    /* ===== NAVIGATION SMALL MOBILE ===== */
    .nav-container {
        padding: 0.8rem 1rem;
        height: 65px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 2rem 0;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 2.5px;
    }

    /* ===== HERO SECTION SMALL MOBILE ===== */
    .hero-2025 {
        padding: 65px 0 0 0;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
        gap: 2rem;
        min-height: calc(100vh - 65px);
    }
    
    /* ===== HERO TITLE SMALL MOBILE ===== */
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 1.2rem;
        letter-spacing: -0.01em;
    }
    
    .title-line {
        margin-bottom: 0.2rem;
    }
    
    .title-highlight {
        margin-bottom: 0.2rem;
    }
    
    /* ===== HERO SUBTITLE SMALL MOBILE ===== */
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.8vw, 1rem);
        line-height: 1.5;
        margin-bottom: 1.8rem;
        max-width: 95%;
        font-weight: 500;
    }
    
    /* ===== HERO STATS SMALL MOBILE ===== */
    .hero-stats {
        gap: 1.2rem;
        margin-bottom: 2rem;
        max-width: 280px;
    }
    
    .stat-item {
        padding: 1.2rem 1rem;
        border-radius: 12px;
    }
    
    .stat-prefix {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* ===== HERO CTA SMALL MOBILE ===== */
    .hero-cta {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        max-width: 280px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-height: 48px;
        gap: 0.6rem;
    }
    
    .cta-text {
        font-weight: 600;
    }
    
    .cta-icon {
        font-size: 1rem;
    }
    
    /* ===== HERO IMAGE SMALL MOBILE ===== */
    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .image-frame {
        padding: 0.6rem;
        border-radius: 16px;
    }
    
    .hero-img {
        border-radius: 12px;
    }
    
    /* ===== FLOATING ICONS SMALL MOBILE ===== */
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Hide floating icons on very small screens to avoid touch conflicts */
    .icon-1, .icon-2, .icon-3 {
        display: block;
        opacity: 0.7;
    }
    
    /* ===== SCROLL INDICATOR SMALL MOBILE ===== */
    .hero-scroll-indicator {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .scroll-mouse {
        width: 22px;
        height: 36px;
        border-width: 2px;
        border-radius: 11px;
    }
    
    .scroll-wheel {
        width: 2.5px;
        height: 5px;
        top: 6px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
    
    /* ===== FORMS SMALL MOBILE ===== */
    .wizard-form-container,
    .contact-info-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    /* ===== PERFORMANCE OPTIMIZATIONS FOR SMALL MOBILE ===== */
    .orb-1, .orb-2, .orb-3 {
        filter: blur(20px) !important;
        opacity: 0.6 !important;
    }
    
    .particles-container {
        will-change: auto;
    }
}

/* ===== ACCESSIBILITY & REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .orb,
    .floating-icon {
        animation: none !important;
        transition: none !important;
    }
    
    .cta-button {
        transition: background-color 0.2s ease !important;
    }
    
    .hero-scroll-indicator {
        animation: none !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .hero-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .cta-button {
        border: 2px solid white !important;
    }
    
    .stat-item {
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
}

/* ===== DARK MODE SPECIFIC MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    [data-theme="dark"] .hero-title {
        color: #ffffff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }
    
    [data-theme="dark"] .hero-subtitle {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }
    
    [data-theme="dark"] .stat-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    [data-theme="dark"] .cta-button.secondary {
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
}

/* ===== CLEANUP - Remove all previous duplicate media queries ===== */
/* All duplicate @media (max-width: 768px) and @media (max-width: 480px) 
   rules are now consolidated above for better performance and maintainability */

/* ===== SIMPLE GALLERY STYLES ===== */
.simple-gallery {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gallery-container {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Main Image */
.main-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 1000px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Thumbnail Navigation */
.thumbnail-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.thumbnail-track {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0.5rem 0;
}

.thumbnail-track::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.thumbnail:hover {
    transform: scale(1.05);
    border-color: rgba(255, 105, 180, 0.5);
}

.thumbnail.active {
    border-color: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.thumbnail.active img {
    transform: scale(1.1);
}

/* Navigation Arrows */
.nav-arrow {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .simple-gallery {
        padding: 1rem 0;
    }
    
    .gallery-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .main-image {
        height: 350px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .image-overlay {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .main-image {
        height: 280px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .thumbnail-track {
        gap: 0.6rem;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .image-overlay {
        top: 0.6rem;
        right: 0.6rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .main-image:hover {
        transform: none;
    }
    
    .thumbnail:hover {
        transform: none;
    }
    
    .nav-arrow:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .gallery-container {
        border: 2px solid #ff69b4;
    }
    
    .thumbnail {
        border: 1px solid #ff69b4;
    }
    
    .nav-arrow {
        border: 2px solid white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .main-image,
    .thumbnail,
    .nav-arrow {
        transition: none;
    }
    
    .main-image:hover,
    .thumbnail:hover,
    .nav-arrow:hover {
        transform: none;
    }
}

/* ===== SIMPLE GALLERY STYLES ===== */
.simple-gallery {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gallery-container {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.2);
}

/* ===== MOBILE FIXES - INTERACTIVE BACKGROUND DISABLED + CONTENT CENTERING ===== */

/* ===== DISABLE INTERACTIVE BACKGROUND ON MOBILE ===== */
@media (max-width: 768px) {
    /* COMPLETELY DISABLE ALL INTERACTIVE BACKGROUND ELEMENTS ON MOBILE */
    .particles-container,
    .gradient-orbs,
    .grid-pattern,
    .floating-elements,
    .floating-icon,
    .orb,
    .particle,
    .hero-background *,
    .particles-container *,
    .gradient-orbs *,
    .floating-elements * {
        pointer-events: none !important;
        touch-action: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
    }
    
    /* DISABLE ALL ANIMATIONS ON MOBILE FOR BETTER PERFORMANCE */
    .particles-container .particle,
    .gradient-orbs .orb,
    .floating-elements .floating-icon,
    .particle,
    .orb,
    .floating-icon {
        animation: none !important;
        transition: none !important;
    }
    
    /* REDUCE OPACITY OF BACKGROUND ELEMENTS ON MOBILE */
    .particles-container {
        opacity: 0.1 !important;
    }
    
    .gradient-orbs {
        opacity: 0.05 !important;
    }
    
    .grid-pattern {
        opacity: 0.05 !important;
    }
    
    .floating-elements {
        opacity: 0.05 !important;
    }
    
    /* ENSURE BODY AND HTML ARE SCROLLABLE */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* ENSURE ALL INTERACTIVE ELEMENTS ARE ABOVE BACKGROUND */
    .hero-container,
    .hero-content,
    .cta-button,
    .nav-menu,
    .mobile-menu-toggle {
    position: relative;
        z-index: 20 !important;
    }
}

/* ===== HERO CONTENT CENTERING ON MOBILE ===== */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-md);
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
    width: 100%;
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .title-line,
    .title-highlight {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .hero-subtitle {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    align-items: center;
    justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-button {
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-scroll-indicator {
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .scroll-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* COMPLETELY DISABLE ALL INTERACTIVE BACKGROUND ELEMENTS ON SMALL MOBILE */
    .particles-container,
    .gradient-orbs,
    .grid-pattern,
    .floating-elements,
    .floating-icon,
    .orb,
    .particle,
    .hero-background *,
    .particles-container *,
    .gradient-orbs *,
    .floating-elements * {
        pointer-events: none !important;
        touch-action: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
    }
    
    /* DISABLE ALL ANIMATIONS ON SMALL MOBILE */
    .particles-container .particle,
    .gradient-orbs .orb,
    .floating-elements .floating-icon,
    .particle,
    .orb,
    .floating-icon {
        animation: none !important;
        transition: none !important;
    }
    
    /* REDUCE OPACITY EVEN MORE ON SMALL MOBILE */
    .particles-container {
        opacity: 0.05 !important;
    }
    
    .gradient-orbs {
        opacity: 0.02 !important;
    }
    
    .grid-pattern {
        opacity: 0.02 !important;
    }
    
    .floating-elements {
        opacity: 0.02 !important;
    }
    
    .hero-container {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-lg);
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        text-align: center;
    }
    
    .title-line,
    .title-highlight {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .hero-scroll-indicator {
        margin-top: var(--spacing-lg);
        text-align: center;
    }
    
    .scroll-text {
        font-size: var(--text-xs);
        text-align: center;
    }
}

/* ===== IMPROVED TOUCH HANDLING ON MOBILE ===== */
@media (max-width: 768px) {
    /* Prevent zoom on double tap */
    * {
        touch-action: manipulation;
    }
    
    /* Improve touch targets */
    .cta-button,
    .nav-btn,
    .slider-btn,
    .dot {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Smooth scrolling on mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent pull-to-refresh interference */
    body {
        overscroll-behavior-y: contain;
    }
}

/* ===== BETTER PERFORMANCE ON MOBILE ===== */
@media (max-width: 768px) {
    /* Reduce animations for better performance */
    .hero-background {
        will-change: auto;
    }
    
    .particles-container,
    .gradient-orbs,
    .grid-pattern {
        will-change: auto;
    }
    
    /* Optimize for mobile rendering */
    .hero-container {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .hero-content {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* ===== ENSURE CONTENT IS ALWAYS CENTERED ===== */
@media (max-width: 768px) {
    .hero-2025 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
  text-align: center;
        width: 100%;
    }
    
    .hero-stats {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

/* ===== FORM TILE STYLES - COOPERATION AND GOALS ===== */

/* Support for checkbox tiles */
.select-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.select-card input[type="checkbox"]:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-5px);
}

/* Cooperation cards - 2 columns layout */
.cooperation-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Goals cards - 2 columns layout */
.goals-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Enhanced card styling for form tiles */
.cooperation-cards .card-content,
.goals-cards .card-content {
    padding: var(--spacing-lg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    min-height: 120px;
}

.cooperation-cards .card-content:hover,
.goals-cards .card-content:hover {
    border-color: rgba(255, 105, 180, 0.5);
    background: rgba(255, 105, 180, 0.05);
    transform: translateY(-2px);
}

.cooperation-cards .card-content i,
.goals-cards .card-content i {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.cooperation-cards .card-content h4,
.goals-cards .card-content h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    line-height: 1.3;
}

.cooperation-cards .card-content p,
.goals-cards .card-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    margin: 0;
}

/* Selected state styling */
.cooperation-cards .select-card input[type="radio"]:checked + .card-content,
.goals-cards .select-card input[type="checkbox"]:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(255, 105, 180, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

/* Mobile responsive for form tiles */
@media (max-width: 768px) {
    .cooperation-cards,
    .goals-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .cooperation-cards .card-content,
    .goals-cards .card-content {
        padding: var(--spacing-md);
        min-height: 100px;
    }
    
    .cooperation-cards .card-content h4,
    .goals-cards .card-content h4 {
        font-size: var(--font-size-sm);
    }
    
    .cooperation-cards .card-content p,
    .goals-cards .card-content p {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .cooperation-cards .card-content,
    .goals-cards .card-content {
        padding: var(--spacing-sm);
        min-height: 90px;
    }
    
    .cooperation-cards .card-content i,
    .goals-cards .card-content i {
        font-size: 24px;
    }
}

/* ===== FORM VALIDATION MESSAGE COLOR FIX ===== */
.validation-message,
.validation-message *,
.validation-message i {
    color: #ff3b3b !important;
    fill: #ff3b3b !important;
}

/* ===== METAMORFOZY PAGE FIXES ===== */

/* ===== METAMORFOZY GALLERY BACKGROUND ===== */
.metamorfozy-gallery-bg {
    background: var(--bg-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.metamorfozy-gallery-bg .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* ===== METAMORFOZY HEADER STYLES ===== */
.metamorfozy-header {
    text-align: center;
    padding: 140px 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.metamorfozy-header .hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.metamorfozy-header .title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.metamorfozy-header .title-highlight {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metamorfozy-header .title-highlight::after {
    display: none;
}

.metamorfozy-desc {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.metamorfozy-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.metamorfozy-lead .title-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* ===== GALLERY Z-INDEX FIX ===== */
.simple-gallery {
    position: relative;
    z-index: 20;
}

.gallery-container {
    position: relative;
    z-index: 25;
}

.main-image-container {
    position: relative;
    z-index: 30;
}

/* ===== MOBILE FIXES FOR METAMORFOZY PAGE ===== */
@media (max-width: 768px) {
    /* Disable interactive background on mobile */
    .metamorfozy-gallery-bg .particles-container,
    .metamorfozy-gallery-bg .gradient-orbs,
    .metamorfozy-gallery-bg .grid-pattern,
    .metamorfozy-gallery-bg .floating-elements {
        pointer-events: none !important;
        touch-action: none !important;
        opacity: 0.1 !important;
    }
    
    /* Disable animations on mobile */
    .metamorfozy-gallery-bg .particles-container .particle,
    .metamorfozy-gallery-bg .gradient-orbs .orb,
    .metamorfozy-gallery-bg .floating-elements .floating-icon {
        animation: none !important;
    }
    
    /* Header adjustments for mobile */
    .metamorfozy-header {
        padding: 120px 1rem 2rem;
        margin-top: 0;
    }
    
    .metamorfozy-header .hero-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 1rem;
    }
    
    .metamorfozy-header .title-line {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .metamorfozy-header .title-highlight {
        font-size: 2.2rem;
    }
    
    .metamorfozy-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .metamorfozy-lead {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    /* Gallery mobile improvements */
    .simple-gallery {
        margin: 0 0.5rem;
    }
    
    .gallery-container {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 700px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .metamorfozy-header {
        padding: 100px 0.5rem 1.5rem;
    }
    
    .metamorfozy-header .hero-title {
        font-size: var(--font-size-xl);
    }
    
    .metamorfozy-header .title-line {
        font-size: 1.5rem;
    }
    
    .metamorfozy-header .title-highlight {
        font-size: 1.8rem;
    }
    
    .metamorfozy-desc {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .metamorfozy-lead {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .gallery-container {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .main-image {
        height: 560px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ===== TOUCH GESTURES FOR GALLERY ===== */
@media (hover: none) and (pointer: coarse) {
    .thumbnail-track {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-image-container {
        touch-action: pan-y pinch-zoom;
    }
}

/* ===== RESULTS CTA BUTTON CLICKABILITY FIX ===== */
.results-cta {
    position: relative;
    z-index: 50;
}

.results-cta .cta-button {
    position: relative;
    z-index: 51;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.results-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Ensure button is above all background elements */
.results-cta .cta-button,
.results-cta .cta-button * {
    pointer-events: auto !important;
}