/*
Theme Name: Fantastic Theme
Theme URI: https://agencjatrawers.com
Author: Wojciech Michalik
Author URI: https://agencjatrawers.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fantastic-theme
Tags: one-page, custom, acf
*/

/* Import Google Fonts - Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* Globalne zmienne CSS */
:root {
    --color-black: #181818;
    --color-bg: #FFFFFF;
    --color-secondary-bg: #FAFAFA;
    --font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Przenieś WordPress Admin Bar na dół */
#wpadminbar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Usuń margin-top z html, który WordPress dodaje dla admin bara na górze */
html {
    margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
}

/* Dostosuj body gdy admin bar jest widoczny */
body.admin-bar {
    padding-top: 80px !important;
    /* Nadpisz domyślny padding-top WordPressa - używamy tylko dla fixed header */
    padding-bottom: 32px !important;
    /* Padding dla admin bara na dole */
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 80px !important;
        /* Nadpisz domyślny padding-top WordPressa */
        padding-bottom: 46px !important;
        /* Większy padding dla wyższego admin bara na mobile */
    }
}

/* Wyłącz podgląd zdjęć na iPhone/iOS */
img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

picture {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto;
    /* Wyłącz domyślne smooth scroll - używamy własnego JS */
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-bg);
    padding-top: 80px;
}

.site-main {
    padding-top: 0;
}

/* Kontener główny */
.site-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.site-main {
    padding-top: 0;
    margin-top: 0;
}

/* Sekcje onepagera */
.section {
    position: relative;
    width: 100%;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 50px;
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    min-height: 37.5rem;
    overflow: hidden;
}

.hero-background picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-background img {
    display: block;
    width: 100%;
    height: 100%;
	object-position: center bottom;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

@media (max-width: 768px) {
    .hero-background picture {
        display: block;
    }

    .hero-image {
        object-fit: cover !important;
        object-position: center bottom !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: var(--color-bg);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #00000040;
}

.site-header.hide-header {
    transform: translateY(-100%);
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Desktop: Logo i menu w jednym kontenerze */
.header-desktop-container {
    display: none;
}

@media (min-width: 769px) {
    .header-desktop-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        padding: 20px 40px;
    }

    .header-desktop-container .site-branding {
        padding: 0;
        width: auto;
        text-align: left;
    }

    .header-desktop-container .site-logo-img {
        width: 250px;
        height: auto;
        margin-bottom: 0;
    }

    .header-desktop-container .main-navigation {
        width: auto;
        padding: 0;
    }

    .site-branding-mobile {
        display: none;
    }
}

/* Mobile: Hamburger, logo w jednym kontenerze */
.header-mobile-container {
    display: none;
}

@media (max-width: 768px) {
    .header-mobile-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 30px 20px 15px;
        gap: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle .hamburger-icon {
        width: 32px;
        height: 32px;
        display: block;
        filter: brightness(0);
    }

    .site-branding-mobile {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        min-width: 0;
        /* Pozwala na kurczenie się flex item */
    }

    .site-branding-mobile .site-logo-link {
        display: flex;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .site-branding-mobile .site-logo-img {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
    }

    .mobile-header-spacer {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
}

@media (min-width: 769px) {
    .site-branding-mobile {
        display: none;
    }

    .header-mobile-container {
        display: none;
    }
}

.site-branding {
    width: 100%;
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
}

@media (min-width: 769px) {
    .site-branding {
        width: auto;
        padding: 0;
    }
}

.site-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-black);
}

.site-logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
}

.site-branding-text {
    text-align: center;
}

.site-name {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--color-black);
}

.site-tagline {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--color-black);
    line-height: 1.4;
}

.header-divider {
    display: none;
}

.main-navigation {
    width: 100%;
    padding: 20px;
}

@media (min-width: 769px) {
    .main-navigation {
        width: auto;
        padding: 0;
    }
}

.main-navigation ul,
.main-navigation .menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
    list-style: none;
}

.main-navigation a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    display: block;
}

.main-navigation a:hover,
.main-navigation a:focus {
    opacity: 0.7;
}

.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a {
    opacity: 0.7;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    background-color: #FFFFFF;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, visibility 0s 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease-in-out, visibility 0s 0s;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    left: 20px;
    right: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-close .close-icon {
    width: 32px;
    height: 32px;
    display: block;
    filter: brightness(0);
}

.mobile-navigation {
    width: 100%;
    max-width: 100%;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

.mobile-navigation .mobile-menu,
.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-navigation li {
    margin: 0;
}

.mobile-navigation a {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus {
    opacity: 0.7;
}

/* Subtelne animacje wejścia */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Klasy animacji - domyślnie ukryte */
.content-row-text,
.content-row-image {
    opacity: 0;
}

.content-row-text.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.content-row.image-left .content-row-image.animated {
    animation: fadeInSlideLeft 1s ease-out forwards;
}

.content-row.image-right .content-row-image.animated {
    animation: fadeInSlide 1s ease-out forwards;
}

/* Content Rows Section */
.content-rows-section {
    padding: 0;
}

.content-row {
    width: 100%;
    padding: 20px 0;
    background-color: var(--color-bg);
}

.content-row-inner {
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-row.image-left .content-row-inner {
    grid-template-areas: "image text";
}

.content-row.image-right .content-row-inner {
    grid-template-areas: "text image";
}

.content-row-image {
    grid-area: image;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.content-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.content-row-text {
    grid-area: text;
    padding-bottom: 50px;
}

.content-row-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -.05em;
}

.content-row-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.content-row-content p {
    margin-bottom: 1.5rem;
}

.content-row-content p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: var(--color-black);
    background-repeat: repeat;
    background-position: center;
    background-size: 30%;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-repeat: repeat;
    background-position: center;
    background-size: 30%;
    opacity: 1;
    filter: brightness(2) invert(0);
    pointer-events: none;
    z-index: 0;
}

/* Większy pattern na mobile */
@media (max-width: 768px) {
    .services-section {
        background-size: 80%;
    }

    .services-section::before {
        background-size: 80%;
    }

    .clients-section {
        background-size: 80%;
    }
}

.services-section>* {
    position: relative;
    z-index: 1;
}

.services-container {
    margin: 0 auto;
    padding: 0 80px;
}

.services-header {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-bottom: 80px;
    padding-bottom: 60px;
}

.services-title-wrapper {
    display: flex;
    align-items: flex-start;
}

.services-title {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin: 0;
    white-space: nowrap;
}

.services-description-wrapper {
    display: flex;
    align-items: flex-start;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

.services-description p {
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.service-item {
    padding: 70px 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 2px solid #FFFFFF;
}

.service-item.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.service-icon {
    margin-bottom: 30px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.05em;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #FFFFFF;
}

.service-description p {
    margin: 0 0 1rem 0;
}

.service-description p:last-child {
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    background-color: #ffffff;
    background-repeat: repeat;
    background-position: center;
    background-size: 30%;
    color: var(--color-black);
    padding: 100px 0;
    position: relative;
}

.clients-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 0;
}

.clients-section>* {
    position: relative;
    z-index: 1;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-black);
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.2;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.clients-slider-wrapper {
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

/* Slider Styles - tylko na mobile */
.clients-slider {
    position: relative;
    overflow: hidden;
}

.client-slide {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

/* Na desktop wszystkie slajdy widoczne */
@media (min-width: 769px) {
    .client-slide {
        display: flex !important;
    }

    .clients-slider-nav,
    .clients-slider-dots {
        display: none !important;
    }
}

/* Na mobile tylko aktywny slajd widoczny */
@media (max-width: 768px) {
    .client-slide {
        display: none;
    }

    .client-slide.active {
        display: flex;
    }
}

/* Slider Navigation */
.clients-slider-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    background-color: var(--color-bg);
    cursor: pointer;
    pointer-events: all;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    padding: 0;
}

.slider-arrow:hover {
    background-color: var(--color-black);
    color: var(--color-bg);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--color-black);
    transition: color 0.3s ease;
}

.slider-arrow:hover svg {
    color: var(--color-bg);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Slider Dots */
.clients-slider-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(24, 24, 24, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-black);
}

.slider-dot:hover {
    background-color: rgba(24, 24, 24, 0.6);
}

.client-logo-item {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-logo-item.animated {
    animation: fadeInUp 0.5s ease-out forwards;
}

.client-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
}

/* Imprint Content Section */
.imprint-content-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.imprint-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.imprint-content {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

.imprint-content h1,
.imprint-content h2,
.imprint-content h3,
.imprint-content h4,
.imprint-content h5,
.imprint-content h6 {
    margin: 40px 0 20px 0;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.imprint-content h1 {
    font-size: 2.5rem;
}

.imprint-content h2 {
    font-size: 2rem;
}

.imprint-content h3 {
    font-size: 1.5rem;
}

.imprint-content p {
    margin: 0 0 20px 0;
}

.imprint-content ul,
.imprint-content ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.imprint-content li {
    margin: 0 0 10px 0;
}

.imprint-content a {
    color: var(--color-black);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.imprint-content a:hover {
    opacity: 0.7;
}

.imprint-content strong {
    font-weight: 700;
}

.imprint-content em {
    font-style: italic;
}

/* Footer */
.site-footer {
    background-color: var(--color-secondary-bg);
    color: var(--color-black);
    padding: 100px 20px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-information {
    margin-bottom: 80px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-black);
    margin: 0 0 40px 0;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.contact-email {
    margin-bottom: 30px;
}

.contact-email a {
    font-size: 1.1rem;
    color: var(--color-black);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-email a:hover {
    opacity: 0.7;
}

.contact-company-text {
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 0;
}

.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(24, 24, 24, 0.1);
    margin-top: 40px;
}

.footer-imprint a {
    font-size: 0.9rem;
    color: var(--color-black);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-imprint a:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--color-black);
}

.footer-copyright a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
    opacity: 0.7;
}

/* Responsywność */
@media (max-width: 768px) {

    .site-branding-mobile .site-logo-img {
        max-width: 16rem;
        width: auto;
        height: auto;
        margin-bottom: 0;
    }

    /* Bardzo małe ekrany - logo dostosowuje się do szerokości */
    @media (max-width: 480px) {
        .header-mobile-container {
            padding: 20px 15px 12px;
            gap: 20px;
        }

        .mobile-menu-toggle {
            width: 28px;
            height: 28px;
        }

        .mobile-menu-toggle .hamburger-icon {
            width: 28px;
            height: 28px;
        }

        .mobile-header-spacer {
            width: 28px;
            height: 28px;
        }

        .site-branding-mobile .site-logo-img {
            max-width: 100%;
            width: 100%;
        }
    }

    @media (max-width: 360px) {
        .header-mobile-container {
            padding: 15px 10px 10px;
            gap: 20px;
        }
    }

    .site-name {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .site-tagline {
        font-size: 12px;
    }

    .main-navigation {
        display: none;
    }

    .header-divider {
        display: none;
    }

    .header-desktop-container {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-row {
        padding: 20px 0;
    }

    .content-row-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        grid-template-areas: "image" "text" !important;
        padding: 0 20px;
    }

    .content-row-image {
        min-height: 300px;
    }

    .content-row-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .content-row-content {
        font-size: 0.95rem;
    }

    .services-container {
        padding: 0 40px;
    }

    .services-container {
        padding: 0 40px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
        padding-bottom: 40px;
    }

    .services-title {
        font-size: 2rem;
        text-align: center;
    }

    .services-title-wrapper {
        justify-content: center;
    }

    .services-description {
        font-size: 1rem;
        text-align: center;
    }

    .services-description-wrapper {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-item {
        padding: 50px 0;
        border-top: 1px solid #ffffff;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .service-description {
        font-size: 1rem;
        line-height: 1.8;
    }

    .clients-container {
        padding: 0 40px;
    }

    .clients-section {
        padding: 60px 0;
    }

    .clients-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Clients Slider na mobile */
    .clients-grid.clients-slider {
        display: block;
        grid-template-columns: none;
        gap: 0;
    }

    .client-slide {
        display: none !important;
        opacity: 1;
    }

    .client-slide.active {
        display: flex !important;
    }

    .clients-slider-nav {
        display: flex;
    }

    .clients-slider-dots {
        display: flex;
    }

    .client-logo-item {
        max-width: 50%;
        height: 50%;
        padding: 20px;
        margin: 0 auto;
    }

    .site-footer {
        padding: 60px 20px 30px;
    }

    .contact-information {
        margin-bottom: 50px;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-email a {
        font-size: 1rem;
    }

    .contact-company-text {
        margin-bottom: 30px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
    }

    /* Imprint Content Section - Mobile */
    .imprint-content-section {
        padding: 60px 0;
    }

    .imprint-container {
        padding: 0 20px;
    }

    .imprint-content {
        font-size: 0.95rem;
    }

    .imprint-content h1 {
        font-size: 2rem;
    }

    .imprint-content h2 {
        font-size: 1.75rem;
    }

    .imprint-content h3 {
        font-size: 1.35rem;
    }
}