    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f9fa;
    }



    /* GLOBALNE UKRYCIE MOBILE SOCIAL ICONS - TYLKO NA MOBILE BĘDĄ WIDOCZNE */
    .nav-social-mobile {
        display: none !important;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Navigation */
    .navbar {
        background: linear-gradient(135deg, #2c3e50, #0f0e0e);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        transition: background 0.3s ease;
    }
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }

    .nav-social {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: 1rem;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: white;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .social-icon:hover {
        background: rgba(212, 165, 116, 0.8);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
    }

    .social-icon svg {
        transition: transform 0.3s ease;
    }

    .social-icon:hover svg {
        transform: scale(1.1);
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        text-decoration: none;
        letter-spacing: 1px;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        align-items: center;
        gap: 2rem;
    }

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        outline: none;
    }

    .nav-menu a:hover:not(.cta-button) {
        color: #c5965f;
    }

    .cta-button {
        background: linear-gradient(135deg, #C49B56, #D4A574);
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        color: white !important;
        font-weight: bold;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        outline: none !important;
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .cta-button:hover,
    .cta-button:focus,
    .cta-button:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(196, 155, 86, 0.4) !important;
        color: white !important;
        background: linear-gradient(135deg, #C49B56, #D4A574);
        outline: none !important;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(to bottom, #E8E6E4 0%, #E2E0DD 25%, #DDD9D4 50%, #D8D3CD 75%, #D4CFC7 100%);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 80vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 1, 2, 0.2), rgba(0, 0, 0, 0.83)), 
                    url('pics/NPA_1544_SM_size (1).jpg');
        background-size: cover, 100%;
        background-position: center, center 40%;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-content h2 {
        font-size: 2.2rem;
        color: #C49B56;
        margin-bottom: 2.5rem;
        font-style: italic;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .hero-content > p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.95;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .hero-stats {
        margin: 3rem 0;
        padding: 2rem 0;
        border-top: 1px solid rgba(212, 165, 116, 0.3);
        border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    }

    .hero-stats h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        color: #C49B56;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .hero-stats p {
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    /* Hero Logo Simple */
    .hero-logo-simple {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        height: 60px;
        width: auto;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .hero-logo-simple:hover {
        opacity: 1;
    }

    /* Image Placeholders */
    .image-placeholder {
        width: 100%;
        max-width: 450px;
        height: 550px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(184, 147, 92, 0.3));
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        border: 2px solid rgba(212, 165, 116, 0.3);
        backdrop-filter: blur(10px);
    }

    /* Buttons */
    .btn-primary {
        display: inline-block;
        background: linear-gradient(135deg, #C49B56, #f3c86b);
        color: white;
        padding: 1.2rem 2.5rem;
        text-decoration: none;
        border-radius: 35px;
        font-weight: bold;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
        margin-top: 1rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    }

    /* Tools Section Standalone */
    .tools-section-standalone {
        padding: 80px 0;
        background: linear-gradient(135deg, #2c3e50, #0f0e0e);
        color: white;
        text-align: center;
    }

    .tools-section-standalone h3 {
        font-size: 1.8rem;
        color: #C49B56;
        margin-bottom: 3rem;
        font-weight: 300;
    }

    .tools-section {
        text-align: center;
        margin: 3rem 0;
        padding: 3rem 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .tools-section h3 {
        font-size: 1.4rem;
        color: #C49B56;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .tools-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .tool-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: rgba(255,255,255,0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .tool-item:hover {
        background: rgba(212, 165, 116, 0.2);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    }

    .tool-item a {
        display: block;
        text-decoration: none;
    }



    .tool-item img {
        width: 150px;
        height: 110px;
        object-fit: contain;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* SZCZEGÓLNIE DLA ZDJĘĆ PROFILOWYCH */


    .tool-item:hover img {
        filter: brightness(1.1) contrast(1.2) saturate(1.1);
    }

    .tool-item a:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .logos {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .logo-item {
        background: rgba(255,255,255,0.1);
        padding: 1rem 2rem;
        border-radius: 10px;
        font-weight: bold;
    }

    /* Bio Section */
    .bio {
        padding: 80px 0;
        background: white;
    }

    .bio .container {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: start;
    }

    .bio-image img {
        margin-top: 20%;
        width: 500px;
        height: 600px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .bio-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #2c3e50;
        font-weight: 300;
    }

    .bio-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .bio-content strong {
        color: #C49B56;
    }

    /* Qualifications Section */
    .qualifications {
        padding: 80px 0;
        background: linear-gradient(135deg, #e3e4e6, #fff8f8);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-label {
        display: block;
        font-size: 0.9rem;
        color: #C49B56;
        font-weight: bold;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 3rem;
        color: #2c3e50;
        font-weight: 300;
    }

    .qualifications-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .experience-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .stat-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(196, 155, 86, 0.1);
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(196, 155, 86, 0.15);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: bold;
        color: #C49B56;
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 1rem;
        color: #2c3e50;
        font-weight: 500;
        line-height: 1.4;
    }

    .qualifications-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .qualification-left {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .qualification-text {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border-left: 5px solid #C49B56;
    }

    .qualification-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #2c3e50;
        margin: 0;
    }

    .qualification-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

    .qualification-image:hover {
        transform: translateY(-5px);
    }

    .qualification-image img {
        width: 100%;
        height: 750px;
        object-fit: cover;
        display: block;
    }

    .certificates-container {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .certificates-container h3 {
        font-size: 1.8rem;
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 2rem;
        text-align: center;
        position: relative;
    }

    .certificates-container h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(135deg, #C49B56, #D4A574);
        border-radius: 3px;
    }

    .certificates-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certificate-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(196, 155, 86, 0.1);
    }

    .certificate-item:hover {
        background: linear-gradient(135deg, rgba(196, 155, 86, 0.05), rgba(212, 165, 116, 0.05));
        transform: translateX(5px);
        border-color: rgba(196, 155, 86, 0.3);
    }

    .certificate-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #C49B56, #D4A574);
        border-radius: 50%;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
    }

    .certificate-item span {
        font-size: 0.95rem;
        color: #2c3e50;
        font-weight: 500;
        line-height: 1.4;
    }

    /* Quote Section */
    .quote-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2c3e50, #0f0e0e), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect width="1200" height="400" fill="%232c3e50"/><circle cx="300" cy="200" r="150" fill="%23d4a574" opacity="0.1"/><circle cx="900" cy="200" r="100" fill="%233d5a80" opacity="0.2"/></svg>');
        text-align: center;
        color: white;
    }

    .quote-section blockquote {
        max-width: 800px;
        margin: 0 auto;
    }

    .quote-section p {
        font-size: 2.2rem;
        font-style: italic;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .quote-section cite {
        font-size: 1rem;
        opacity: 0.8;
        font-style: normal;
        letter-spacing: 2px;
    }

    /* Experience Section */
    .experience {
        padding: 80px 0;
        background: white;
    }

    .experience h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 300;
        text-align: center;
    }

    .experience-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 3rem;
        font-style: italic;
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .experience-text p,
    .experience-sidebar p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .experience-sidebar {
        margin-top: 2rem;
        padding: 2rem;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 15px;
        border-left: 4px solid #C49B56;
    }

    .experience-sidebar h2 {
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        font-weight: 600;
    }

    /* Benefit and Expectation Items */
    .benefit-item,
    .expectation-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(196, 155, 86, 0.1);
    }

    .benefit-item:hover,
    .expectation-item:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: translateX(5px);
        border-color: rgba(196, 155, 86, 0.3);
        box-shadow: 0 3px 10px rgba(196, 155, 86, 0.1);
    }

    .benefit-icon,
    .expectation-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #C49B56, #D4A574);
        border-radius: 50%;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        margin-top: 0.2rem;
    }

    .benefit-item p,
    .expectation-item p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #2c3e50;
    }

    .ethics-note {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(196, 155, 86, 0.1);
        border-radius: 10px;
        border-left: 4px solid #C49B56;
        font-style: italic;
        font-size: 0.95rem;
        color: #2c3e50;
    }

    /* Oferta Section */
    .oferta {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        align-items: stretch;
    }

    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3) {
        grid-row: 1;
    }

    .services-grid .service-card:nth-child(4) {
        grid-row: 2;
        grid-column: 1 / 3;
        justify-self: center;
        margin-right: 1rem;
    }

    .services-grid .service-card:nth-child(5) {
        grid-row: 2;
        grid-column: 2 / 4;
        justify-self: center;
        margin-left: 1rem;
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        max-width: 350px;
    }

    .service-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .service-card.featured {
        border: 3px solid #C49B56;
        transform: scale(1.05);
    }

    .badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #C49B56;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }

    .service-card p {
        color: #666;
        margin-bottom: 1.5rem;
        flex-shrink: 0; 
    }

    .service-card ul {
        list-style: none;
        padding: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .service-card li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-card li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #C49B56;
        font-weight: bold;
    }

    /* Konsultacja Section */
    .konsultacja {
        padding: 80px 0;
        background: white;
    }

    .konsultacja .container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .konsultacja-content h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .konsultacja-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #666;
    }

    .service-carousel {
        position: relative;
        margin: 2rem 0;
        padding: 2rem;
        background: #f8f9fa;
        border-radius: 15px;
    }

    .service-detail {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .service-detail.active {
        display: block;
    }

    .service-detail h3 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .service-detail p {
        font-size: 1rem;
        line-height: 1.8;
        color: #333;
    }

    .service-detail strong {
        color: #C49B56;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #C49B56;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .carousel-btn:hover {
        background: #D4A574;
        transform: translateY(-50%) scale(1.1);
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .konsultacja-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Bestseller Card Styling */
    .service-detail.bestseller-card {
        position: relative;
        border: 3px solid #C49B56;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(196, 155, 86, 0.05), rgba(255, 255, 255, 1));
        box-shadow: 0 8px 30px rgba(196, 155, 86, 0.2);
        transform: scale(1.02);
        margin: -2rem;
        padding: 2rem;
    }

    /* Override parent border for bestseller */
    .service-carousel:has(.service-detail.bestseller-card) {
        border-left: none !important;
        border: none !important;
    }

    .bestseller-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #C49B56, #D4A574);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: bold;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(196, 155, 86, 0.3);
        z-index: 10;
    }

    .service-detail.bestseller-card h3 {
        color: #2c3e50;
        margin-top: 1rem;
        font-weight: 600;
    }

    .service-detail.bestseller-card strong {
        color: #C49B56;
    }

    /* Contact Section */
    .contact {
        padding: 80px 0;
        background: linear-gradient(135deg, #2c3e50, #0f0e0e);
        color: white;
    }

    .contact .container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form form {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        background: rgba(255,255,255,0.1);
        color: white;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255,255,255,0.7);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #C49B56;
    }

    .contact-form textarea {
        margin-bottom: 1rem;
        resize: vertical;
        width: 100%;
        grid-column: span 2;
    }

    .privacy-notice {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 1rem;
        line-height: 1.4;
    }

    .contact-info {
        background: rgba(255,255,255,0.1);
        padding: 2rem;
        border-radius: 10px;
        height: fit-content;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color: #C49B56;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .contact-item .icon {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        background: #f0f0f0;
        padding: 2rem 0;
        text-align: center;
        color: rgba(0, 0, 0, 0.7);
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }



    /* Smooth Scrolling & Performance */
    html {
        scroll-behavior: smooth;
    }

    section {
        scroll-margin-top: 80px;
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        html {
            scroll-behavior: auto;
        }
    }

    /* ==========================================
    MOBILE RESPONSIVE DESIGN - NOWY SYSTEM
    ========================================== */

    /* Tablety (768px - 1024px) */
    @media (max-width: 1024px) {
        .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem 1rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        
        /* UKRYCIE SCROLLBAR CAŁKOWICIE */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer 10+ */
    }
        
        .services-grid::-webkit-scrollbar {
            height: 4px;
        }
        
        .services-grid::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.1);
            border-radius: 2px;
        }
        
        .services-grid::-webkit-scrollbar-thumb {
            background: #C49B56;
            border-radius: 2px;
        }
        
        /* JEDNOLITE ROZMIARY KART */
        .service-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 1.5rem;
        height: auto;
    }
        
        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            line-height: 1.3;
            flex-shrink: 0;
            height: auto;
            min-height: 30px;
        }
        
        .service-card p {
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            flex-shrink: 0;
            height: auto;
        }
        
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
        max-width: 250px;  /* ta sama szerokość co pozostałe karty */
        min-width: 250px;  /* ta sama szerokość co pozostałe karty */
        justify-self: auto;
    }

        .service-card ul {
            margin-top: 0.5rem;
            flex-grow: 1; /* LISTA ZAJMUJE POZOSTAŁĄ PRZESTRZEŃ */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            overflow-y: auto; /* PRZEWIJANIE JEŚLI ZA DŁUGA LISTA */
            max-height: 250px;
        }
        
        .service-card li {
            padding: 0.25rem 0;
            font-size: 0.8rem;
            padding-left: 1rem;
            line-height: 1.3;
            border-bottom: 1px solid #eee;
            flex-shrink: 0;
        }
        
    .service-card li:before {
        display: none;
    }

    
        .service-carousel {
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .carousel-btn {
            width: 35px;
            height: 35px;
        }
        
        .prev-btn {
            left: -17px;
        }
        
        .next-btn {
            right: -17px;
        }
        
        .konsultacja-image img {
            height: 250px;
        }

        .service-carousel {
            border-left: none !important;
        }
        
        /* Wskazówka przewijania */
        .oferta::after {
            content: "← Przesuń, aby zobaczyć wszystkie oferty →";
            display: block;
            text-align: center;
            color: #666;
            font-size: 0.8rem;
            margin-top: 1rem;
            font-style: italic;
        }

        
        .bio .container,
        .konsultacja .container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .contact .container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    /* Mobile (768px i mniej) */
    @media (max-width: 768px) {
        /* ==========================================
        ZAPOBIEGANIE OVERFLOW - PODSTAWOWE
        ========================================== */
        * {
            box-sizing: border-box;
        }
        
        body {
            overflow-x: hidden; /* UKRYJ POZIOMY SCROLL DLA CAŁEJ STRONY */
            width: 100%;
            max-width: 100vw;
        }
        
        .container {
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* ==========================================
        NAVIGATION - KOMPAKTOWA BEZ LOGO TEXT
        ========================================== */
        .mobile-menu-toggle {
            display: flex;
            z-index: 1001;
        }
        
        .logo {
            display: none; /* Ukryj napis Łukasz Szymula */
        }
        
        .nav-social {
            display: none; /* Ukryj desktop social media icons */
        }
        
        /* WŁĄCZ MOBILE SOCIAL ICONS TYLKO NA MOBILE */
        
        .nav-container {
            padding: 0 1rem;
            justify-content: flex-end; /* Hamburger po prawej */
        }
        
        .navbar {
        padding: 0.8rem 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    /* HAMBURGER MENU TOGGLE - ZAWSZE WIDOCZNY */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.7);
        padding: 0.8rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span {
        background: white;
    }

    /* ALTERNATYWNIE - JEŚLI CHCESZ ŻE HAMBURGER ZMIENIA KOLOR NA SCROLL */
    .navbar.scrolled .mobile-menu-toggle {
        background: rgba(44, 62, 80, 0.9);
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background: white;
    }
        
        .nav-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #2c3e50, #0f0e0e);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0;
            padding: 0;
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .nav-menu.active {
            display: flex;
            transform: translateX(0);
        }
        
        .nav-menu a {
            display: block;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            text-align: center;
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .nav-menu a:hover:not(.cta-button) {
            background-color: rgba(212, 165, 116, 0.2);
        }
        
        /* POPRAWKA CTA BUTTON - IDEALNE WYŚRODKOWANIE */
        .nav-menu li:has(.cta-button) {
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 1rem 0;
            border-bottom: none !important;
        }
        
        .cta-button {
            margin: 0 !important;
            border-radius: 25px !important;
            border-bottom: none !important;
            padding: 0.8rem 1.5rem !important;
            font-size: 0.9rem !important;
            display: inline-block !important;
            width: auto !important;
            text-align: center !important;
        }
        
    .nav-social-mobile {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 1.5rem 2rem 2rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 1rem;
        width: 100%;
        list-style: none;
    }

    .nav-social-mobile .social-icon {
        width: 60px;
        height: 60px;
        background: transparent;
        border: none;
        border-radius: 12px;
        color: white;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-social-mobile .social-icon i {
        font-size: 28px;
        display: block;
    }

    .nav-social-mobile .social-icon:hover {
        background: rgba(196, 155, 86, 0.3);
        transform: scale(1.1);
        color: #C49B56;
    }

        
        /* ==========================================
        HERO SECTION - BLIŻSZY OBRAZ I TEKST
        ========================================== */
    .hero::before {
        background-size: cover, 300%; /* zwiększ przybliżenie */
        background-position: center, center 35%; /* przesuń obraz w dół */
    }

    .hero {
        min-height: 90vh;
        padding: 00px 0 80px; /* zwiększ padding top */
    }


    /* LUB jeśli chcesz zachować logo, ale mniejsze i wyżej */
    .hero-logo-simple {
        position: absolute;
        top: 400px;
        right: 10px; 
        height: 60px;
        opacity: 0.6;
    }
        .hero-content {
            max-width: 100%;
            padding: 0 1rem;
        }
        
        .hero-content h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero-content h2 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-content > p {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        
        .hero-stats {
            margin: 2rem 0;
            padding: 1.5rem 0;
        }
        
        .hero-stats h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .hero-stats p {
            font-size: 1rem;
        }
        
        /* ==========================================
        SECTIONS - KOMPAKTOWE ODSTĘPY
        ========================================== */
        .bio,
        .qualifications,
        .experience,
        .oferta,
        .konsultacja,
        .contact,
        .tools-section-standalone,
        .quote-section {
            padding: 40px 0;
        }
        
        .container {
            padding: 0 1rem;
        }
        
        /* ==========================================
        BIO SECTION - KOMPAKTOWA
        ========================================== */
        .bio .container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .bio-image img {
            width: 280px;
            height: 350px;
            margin: 0 auto;
        }
        
        .bio-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .bio-content p {
            font-size: 1rem;
            text-align: left;
        }
        
        /* ==========================================
        QUALIFICATIONS - MOBILNE
        ========================================== */
        .section-header h2 {
            font-size: 2rem;
        }
        
        .experience-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .stat-card {
            padding: 1.5rem 1rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
        }
        
        .qualifications-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .qualification-text,
        .certificates-container {
            padding: 1.5rem;
        }
        
        .qualification-image img {
            height: 500px;
             object-position: center 20%; /* Góra zdjęcia */
        }
        
        /* ==========================================
        SERVICES - HORIZONTAL SCROLL CARDS - JEDNOLITE
        ========================================== */
        .services-grid {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            gap: 1rem;
            margin-top: 2rem;
            padding: 0 1rem 1rem 1rem;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            
            /* UKRYCIE SCROLLBAR */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .services-grid {
        cursor: grab;
    }

    .services-grid:active {
        cursor: grabbing;
    }
        .service-card {
            min-width: 300px;
            max-width: 300px;
            flex-shrink: 0;
            scroll-snap-align: start;
            padding: 1.5rem;
            height: auto;
        }

        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            line-height: 1.3;
            flex-shrink: 0;
            height: auto;
            min-height: 30px;
        }
        
        .service-card p {
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            flex-shrink: 0;
            height: auto;
        }
        
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
        max-width: 250px;  /* ta sama szerokość co pozostałe karty */
        min-width: 250px;  /* ta sama szerokość co pozostałe karty */
        justify-self: auto;
    }

        .service-card ul {
            margin-top: 0.5rem;
            flex-grow: 1; /* LISTA ZAJMUJE POZOSTAŁĄ PRZESTRZEŃ */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            overflow-y: auto; /* PRZEWIJANIE JEŚLI ZA DŁUGA LISTA */
            max-height: 250px;
        }
        
        .service-card li {
            padding: 0.25rem 0;
            font-size: 0.8rem;
            padding-left: 1rem;
            line-height: 1.3;
            border-bottom: 1px solid #eee;
            flex-shrink: 0;
        }
        
    .service-card li:before {
        display: none;
    }

        
        /* ==========================================
        TOOLS GRID - HORIZONTAL SCROLL
        ========================================== */
        .tools-grid {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            padding: 0 1rem;
            scroll-snap-type: x mandatory;
        }
        
        .tool-item {
            min-width: 200px;
            flex-shrink: 0;
            scroll-snap-align: start;
            padding: 1rem;
            min-height: 100px;
        }
        
        /* ==========================================
        KONSULTACJA - MOBILNA
        ========================================== */
        .konsultacja .container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .konsultacja-content h2 {
            font-size: 2rem;
            text-align: center;
        }
        
        .konsultacja-content p {
            font-size: 1rem;
            text-align: center;
        }
        
        .service-carousel {
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .carousel-btn {
            width: 35px;
            height: 35px;
        }
        
        .prev-btn {
            left: -17px;
        }
        
        .next-btn {
            right: -17px;
        }
        
        .konsultacja-image img {
            height: 450px;
            object-position: center 20%; /* Góra zdjęcia */
        }

        .service-carousel {
            border-left: none !important;
        }
        
        /* Wskazówka przewijania */
        .oferta::after {
            content: "← Przesuń, aby zobaczyć wszystkie oferty →";
            display: block;
            text-align: center;
            color: #666;
            font-size: 0.8rem;
            margin-top: 1rem;
            font-style: italic;
        }

        /* ==========================================
        CONTACT FORM - MOBILNY - ZMIEŚCI SIĘ W EKRANIE
        ========================================== */
        .contact {
            padding: 25px 0; /* BARDZO MAŁY PADDING */
        }
        
        .contact .container {
            grid-template-columns: 1fr;
            gap: 1rem; /* MNIEJSZY GAP */
            max-width: 100%;
            padding: 0 0.8rem; /* MNIEJSZY PADDING */
            margin: 0 auto;
            overflow-x: hidden;
        }
        
        .contact-form {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .contact-form h2 {
            font-size: 1.8rem; /* MNIEJSZY TEKST */
            text-align: center;
            margin-bottom: 1rem; /* MNIEJSZY MARGIN */
            color: white;
            line-height: 1.2;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 0.8rem; /* MNIEJSZY GAP */
            width: 100%;
            max-width: 100%;
        }
        
        .contact-form input,
        .contact-form textarea {
            padding: 0.8rem; /* MNIEJSZY PADDING */
            font-size: 1rem; /* NORMALNY TEKST */
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            border-radius: 6px;
        }
        
        .contact-form textarea {
            min-height: 100px; /* NIŻSZA TEXTAREA */
            max-height: 120px;
            resize: vertical;
        }
        
        /* KONTAKT INFO - JESZCZE BARDZIEJ KOMPAKTOWA */
        .contact-info {
            padding: 0.2rem; /* JESZCZE MNIEJSZY PADDING */
            margin-top: 0.8rem;
            border-radius: 10px;
            max-width: 100%;
            background: rgba(255,255,255,0.12);
            overflow: hidden;
        }
        
        .contact-info h3 {
            font-size: 1.3rem; /* MNIEJSZY TEKST */
            text-align: center;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
            color: #C49B56;
            line-height: 1.2;
        }
        
        .contact-item {
            justify-content: flex;
            text-align: left;
            padding: 0.1rem ; /* MNIEJSZY PADDING */
            font-size: 1.2rem; /* MNIEJSZY TEKST */
            display: flex;
            gap: 0.5rem; /* MNIEJSZY GAP */
        }
        
        .contact-item .icon {
            font-size: 1.2rem; /* MNIEJSZE IKONY */
            color: #C49B56;
            width: 50px;
            text-align: center;
            flex-shrink: 0;
        }
        
        /* ==========================================
        EXPERIENCE SECTION - MOBILNA
        ========================================== */
        .experience h2 {
            font-size: 2rem;
        }
        
        .experience-sidebar {
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .benefit-item,
        .expectation-item {
            padding: 0.8rem;
            margin-bottom: 1rem;
        }
        
        .benefit-icon,
        .expectation-icon {
            width: 30px;
            height: 30px;
            margin-right: 0.8rem;
        }
        
        .benefit-item p,
        .expectation-item p {
            font-size: 0.9rem;
        }
        
        /* ==========================================
        QUOTE SECTION - MOBILNA
        ========================================== */
        .quote-section p {
            font-size: 1.6rem;
            padding: 0 1rem;
        }
        
        .quote-section cite {
            font-size: 0.9rem;
        }
        
        /* ==========================================
        BUTTONS - MOBILNE
        ========================================== */
        .btn-primary {
            padding: 1rem 2rem;
            font-size: 0.9rem;
            margin: 1.5rem auto;
            display: block;
            max-width: 250px;
        }
    }

    /* Bardzo małe telefony (max-width: 480px) */
    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }
        
        .hero-content h2 {
            font-size: 1.4rem;
        }
        
        /* JEDNOLITE KARTY DLA MAŁYCH EKRANÓW */
        .service-card {
            min-width: 250px;
            max-width: 250px;
            height: 400px; /* STAŁA WYSOKOŚĆ */
            padding: 1.1rem;
        }
        
        .service-card h3 {
            font-size: 1rem;
            min-height: 26px;
        }
        
        .service-card p {
            font-size: 0.8rem;
        }
        
        .service-card li {
            font-size: 0.75rem;
            padding: 0.2rem 0;
        }
        
        .experience-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .tools-grid {
            display: flex;
            overflow-x: auto;
            gap: 0.8rem;
        }
        
        .tool-item {
            min-width: 180px;
            flex-shrink: 0;
            margin-bottom: 0;
        }
        
        .bio-image img {
            width: 240px;
            height: 300px;
        }
        
        /* DODATKOWE ZABEZPIECZENIA OVERFLOW */
        .services-grid {
            padding: 0 0.8rem;
        }
        
        .container {
            padding: 0 0.8rem;
        }
    }

