:root {
    /* Zaktualizowana Paleta Kolorów */
    --color-dark-bg: rgb(36, 53, 48);        
    --color-light-bg: rgb(237, 237, 237);       
    --color-accent: #fbc531;         
    --color-header-overlay: #1A3E3F; 
    --color-text-light: #ffffff;     
    --color-text-dark: #333333;      
    --color-text-gray: #666666;      
    --color-nav-link: #ffffff;       
    --color-separator-line: #cccccc; 
    --color-soft-orange: #F9A471;    
    --color-badge-bg: #EDEDED; /* Ujednolicony kolor tła badge'y */
    --color-dark-box: #244140; 
    --color-card-bg-subtle: rgba(255, 255, 255, 0.05);
    --color-card-border-subtle: rgba(255, 255, 255, 0.15); 
    --color-icon-bg-orange: #f9a471; 
    --color-spec-bg: #303030; 

    /* ZAKTUALIZOWANA TYPOGRAFIA */
    --font-body: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-size-base: 18px;
    --font-size-small: 16px;
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
    font-family: var(--font-body); 
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-light-bg);
    font-size: var(--font-size-base);
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-text-light);
}

/* Ustawienia sekcji i kontenera */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0; 
}

.dark-bg {
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
}

/* Typografia nagłówków */
h1, h2, h3 {
    
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.7rem;
    font-weight: 800; 
margin-bottom: 40px;
}

h2 {
    font-size: 2.5rem;
    margin-top: 0;
color: black;
}

h3 {
    font-size: 2rem;
color: black;
}

p {
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase; 
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* --- 1. UJEDNOLICENIE BADGE'Y --- */
.about-badge {
    background-color: white;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Dodatkowa ramka, by pasowało do WARTOŚCI/SPECJALIZACJA, jeśli tło jest białe */
    border: 1px solid rgba(0, 0, 0, 0.1); 
}
.values .about-badge {
    /* Nadpisanie dla sekcji VALUES, aby użyć tła #FFF */
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 400;
}
.specialization-badge {
     /* Używa .about-badge, styl jest już tam, ale można zresetować specyficzne style */
    background-color: var(--color-badge-bg);
}


/* ------------------------------------------- */
/* --- 1. HEADER / HERO SECTION --- */
/* ------------------------------------------- */

.header-hero {
    background: linear-gradient(rgb(26 62 63 / 0%), rgba(26, 62, 63, 0.25)), url(images/baner-tlo.webp) center center no-repeat;
    background-size: cover;
    color: var(--color-text-light);
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Pasek nawigacji */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgb(36, 53, 48); 
    padding: 15px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logotyp w Navbar */
.logo img {
    height: 30px;
    width: auto;
    filter: brightness(1.5); 
}

.nav ul {
    list-style: none;
    display: flex; 
    gap: 30px;
}

/* Czcionka w Menu */
.nav a {
    font-family: var(--font-body);
    color: var(--color-nav-link); 
    font-size: 0.85rem; 
    font-weight: 400; 
    letter-spacing: 1.5px;
}

.nav a:hover {
    color: var(--color-accent);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin-top: 50px; 
}

/* Logotyp w sekcji Hero */
.hero-logo {
    width: 300px; 
    height: auto;
    margin-bottom: 70px;
    filter: brightness(1.5); 
}

button.hamburger {
    display: none;
}


/* -------------------------------------------------------------------------------------------------- */
/* --- 2. ABOUT US SECTION --- */
/* -------------------------------------------------------------------------------------------------- */

.about-us {
    background-color: var(--color-light-bg);
}

.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    padding: 0 20px; 
    max-width: 1400px; 
    margin: 0 auto;
}

.about-images {
    flex: 1;
    max-width: 45%;
    position: relative;
    min-height: 600px;
    margin-left: 0;
}

.main-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
}

.image-one {
    top: 0;
    left: 0;
    width: 85%;
    height: 90%; 
    z-index: 2;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dark-box {
    position: absolute;
    bottom: 0;
    right: 0; 
    width: 40%;
    height: 25%;
    background-color: var(--color-dark-box);
    border-radius: 20px;
    z-index: 2; 
}

.about-text {
    flex: 1;
    max-width: 55%;
    text-align: left;
    padding-top: 50px; 
    padding-right: 20px; 
}


.about-text p {
    margin: 0 0 20px 0;
    color: var(--color-text-gray);
    font-size: var(--font-size-small);
    font-weight: 500;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.about-text h2::after {
    content: none;
}

/* Układ cech (features-list) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0; 
}

.feature-item .feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background-color: white; 
    border-radius: 50%;
    padding: 5px; 
    flex-shrink: 0;
}

.feature-item h3 {
    text-transform: none; 
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 700; /* UJEDNOLICONE, używa var(--font-heading) */
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.5; 
    display: inline;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 5px;
    color: var(--color-text-dark);
}
.feature-item p {
    margin: 0;
    color: var(--color-text-gray); 
    font-size: var(--font-size-small); 
    font-weight: 400;
    line-height: 1.5;
    display: inline;
}


/* ---------------------------------------------------- */
/* --- 3. CTA TRUST SECTION --- */
/* ---------------------------------------------------- */

.cta-trust {
    padding: 100px 0;
    text-align: center;
    background-color: rgb(36, 53, 48); 
}

/* Nagłówek H2 */
.cta-trust h2 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto; 
    
    font-weight: 700; /* UJEDNOLICONE, używa var(--font-heading) */
    font-family: var(--font-heading);
    font-size: 2rem; 
    line-height: 1.4;
    color: var(--color-text-light);
}

/* Usunięcie układu boxów i zastąpienie go dwoma linijkami tekstu */
.cta-cards {
    display: block; 
    max-width: 900px;
    margin: 0 auto;
    text-align: center; 
}

.cta-card {
    background: none;
    border: none;
    padding: 0;
    max-width: 100%;
    
    font-weight: 400; 
    line-height: 1.4;
    margin-bottom: 0; 
}
.cta-card p {
    margin: 0;
    font-size: var(--font-size-base); 
    line-height: 2;
    text-align: center;
}


/* ----------------------------------------- */
/* --- 4. VALUES SECTION --- */
/* ----------------------------------------- */

.values {
    background-color: var(--color-light-bg);
    text-align: center;
    padding: 100px 0;
}

/* Dymek 'WARTOŚCI FIRMY SALES CONNECTIONS' */
.values .section-subtitle {
    display: none; 
}

.values .about-badge {
    /* UJEDNOLICONE - styl ogólny badge'a */
    margin: 0 auto 30px;
    background-color: white;
    color: var(--color-text-dark);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1); 
}

.values h3 {
    margin-bottom: 50px;
}

/* Układ siatki dwukolumnowej */
.values-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 50px 100px; 
    max-width: 1100px;
    margin: 40px auto 0;
    text-align: left;
}

.value-item {
    display: flex;
    flex-direction: row; 
    align-items: flex-start;
    padding: 0;
    min-width: 0;
    gap: 20px;
}

.value-item strong {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    color: var(--color-text-dark);
    text-transform: none;
    font-weight: 800; /* > 700, używa var(--font-heading) */
    display: block;
}

.value-item p {
    font-size: var(--font-size-small);
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--color-text-gray); 
}

.value-content {
    flex-grow: 1;
}

.value-icon {
    width: 60px; 
    height: 60px;
    background-color: var(--color-icon-bg-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; 
}

/* Ikona SVG wewnątrz kółka */
.value-icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(images/icon.svg) center center no-repeat; 
    background-size: contain;
}


/* ------------------------------------------------- */
/* --- 5. SPECIALIZATION SECTION --- */
/* ------------------------------------------------- */

.specialization {
    background-color: white; 
    padding: 0; 
}

.specialization-container {
    display: flex;
    align-items: center;
    min-height: 700px;
    padding: 0; 
    max-width: 1400px;
    margin: 0 auto;
}

.spec-image-wrapper {
    flex: 1;
    max-width: 50%;
    height: 700px;
    padding-left: 20px; 
}

.spec-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
    padding: 50px 0; 
}


/* --- Kontener tekstowy (Prawa kolumna) --- */
.spec-content-text {
    flex: 1;
    max-width: 50%;
    padding: 100px 40px; 
}

.specialization-badge {
    /* UJEDNOLICZONE - styl ogólny badge'a */
    margin-bottom: 20px;
    background-color: var(--color-badge-bg);
}

.specialization-heading {
    color: black;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.1;
}

.spec-details {
    padding-right: 40px;
}

.intro-paragraph {
    font-size: var(--font-size-small);
    color: var(--color-text-gray);
    margin-bottom: 25px;
    line-height: 1.4;
	    font-weight: 400;
}

.recruitment-list-intro {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-dark);
    font-size: 1rem;
}

.recruitment-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 25px; 
    margin-bottom: 30px;
}

.recruitment-list li {
    position: relative;
    padding-left: 60px; 
    font-size: var(--font-size-small); 
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-text-dark); 
}

.recruitment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgb(243, 148, 93);
    border-radius: 50%;
    background-image: url(images/icon.svg);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.ending-paragraph {
    font-size: var(--font-size-small);
    color: var(--color-text-gray);
    font-weight: 400;
    margin-top: 30px; 
}


/* --------------------------------------- */
/* --- 6. CONTACT SECTION --- */
/* --------------------------------------- */

.contact {
    background-color: var(--color-dark-bg);
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--color-text-light); 
}

.contact-left {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.contact-right {
    flex: 1;
    max-width: 50%;
    text-align: left; 
    padding-left: 50px; 
    border-left: 1px solid rgba(255, 255, 255, 0.2); 
}

.contact-heading {
    font-size: 2.8rem;
    font-weight: 800; /* UJEDNOLICZONE, używa var(--font-heading) */
    color: var(--color-text-light); 
    margin-bottom: 20px;
}

.contact-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-details-box {
    margin-bottom: 30px;
}

.contact-info {
    font-size: 1.4rem;
    font-weight: 700; /* UJEDNOLICZONE, używa var(--font-heading) */
    color: var(--color-text-light);
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.contact-cta {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
}

.contact a {
    color: white;
}

.contact-cta strong {
    font-weight: 700; /* UJEDNOLICZONE, używa var(--font-heading) */
}

/* ----------------------------------- */
/* --- 7. FOOTER SECTION --- */
/* ----------------------------------- */

.footer {
    padding: 30px 0; 
    background-color: rgb(25, 33, 31);
    margin-top: 2px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
}

.footer-logo img {
    height: 35px; 
    width: auto;
    filter: brightness(1.5); 
}

.footer-text {
    flex: 1;
    text-align: left;
    padding-left: 50px;
    max-width: 500px;
}

.footer-copy {
    font-size: 0.85rem;
    color: #616161;
    margin-bottom: 5px;
    line-height: 1.4;
}


/* ---------------------------------------------------- */
/* --- Responsywność dla urządzeń mobilnych --- */
/* ---------------------------------------------------- */

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2.3rem;
    }

button.hamburger {
    display: block;
}

    /* === NAWIGACJA HAMBURGER === */
    .nav {
        display: none;
        position: absolute;
        top: 60px; /* Wysokość Navbar */
        left: 0;
        width: 100%;
        background-color: var(--color-dark-bg);
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav li:last-child {
        border-bottom: none;
    }

    .nav a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .hamburger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        position: relative;
        z-index: 11;
        /* Zwiększony rozmiar hamburgera */
        width: 35px; 
        height: 35px;
        /* Wyśrodkowanie pasków wewnątrz przycisku */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hamburger .bar {
        display: block;
        width: 30px; /* Zwiększona szerokość pasków */
        height: 3px;
        margin: 4px 0; /* Zmniejszony margines, aby pasowało do wysokości 35px */
        background-color: var(--color-text-light);
        transition: all 0.3s ease-in-out;
    }

    /* Animacja krzyżyka */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    /* === KONIEC NAWIGACJI HAMBURGER === */
    

    /* O NAS - zmiana na jedną kolumnę (zgodnie z wizualizacją) */
    .about-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px; 
    }

    .about-images {
        /* OBRAZY U GÓRY WIZUALIZACJI */
        max-width: 100%;
        flex: none;
        min-height: auto;
        margin-left: 0;
        /* Zmieniono: Obraz ma być jeden, na całą szerokość, bez flex-wrap i gap */
        display: block; 
    }

    .about-text {
        /* TEKST U DOŁU WIZUALIZACJI */
        max-width: 100%;
        flex: none;
        padding-top: 0; 
        padding-right: 0; 
        text-align: left; 
    }


.about-content-wrapper {
    align-items: center;
}

    /* Zmiana: Obrazek na całą szerokość i na środku */
    .main-image {
        position: static;
        width: 100%; /* Ustawienie na całą szerokość kontenera .about-images */
        height: 400px;
        margin: 0 auto; /* Wyśrodkowanie */
        margin-bottom: 0;
    }
    .image-one {
        width: 100%; /* Ustawienie na całą szerokość .main-image */
        height: 100%;
    }
    /* Ukrycie dodatkowego elementu dark-box zgodnie z wizualizacją mobilną */
    .dark-box {
        display: none; 
    }

    .about-badge {
        margin: 0 auto 20px; 
    }
    
    .features-list {
        /* Wyrównanie listy cech do lewej */
        align-items: flex-start;
        text-align: left;
        max-width: 600px; 
        margin: 40px 0 0 0;
    }
    .feature-item {
        justify-content: flex-start;
        align-items: center;
display: grid;
    }

.feature-item h3 {
    font-size: 1.3rem;
}
.feature-item span {
display: none;}

    /* WARTOŚCI - Zmiana na 1 kolumnę i wyrównanie do środka */
    .values-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
        max-width: 400px; 
        margin: 40px auto 0;
        text-align: center; 
    }
    .value-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    .value-item strong {
        text-align: left;
    }
    .value-item p {
        text-align: left;
    }

    /* SPECJALIZACJA - Zmiana na 1 kolumnę (zgodnie z wizualizacją) */
    .specialization-container {
        flex-direction: column-reverse; /* Najpierw tekst, potem obraz */
        min-height: auto;
        padding: 0 20px;
    }
    
    .spec-image-wrapper {
        max-width: 100%;
        height: 400px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .spec-main-image {
        padding: 0;
        height: 100%;
        object-fit: contain;
    }
    
    .spec-content-text {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    
    .specialization-heading {
        text-align: left;
        font-size: 1.6rem;
    }

    .spec-details {
        padding-right: 0;
        text-align: left;
    }
    
    .recruitment-list {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    /* KONTAKT - Zmiana na 1 kolumnę */
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .contact-left, .contact-right {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        border-left: none; 
    }
    
    .contact-info {
        font-size: 1.3rem;
    }
    
    /* STOPKA - Zmiana na 1 kolumnę */
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-text {
        text-align: center;
        padding-left: 0;
    }
.values h3 {
    text-align: left;
}
}

@media (max-width: 600px) {
.header-hero{
    padding: 0px 20px
}
    h1 {
        font-size: 2.8rem;
    }

    /* O NAS */
    .main-image {
        height: 100%;
    }
    
    /* SPECJALIZACJA */
    .spec-image-wrapper {
        height: 250px;
    }
    
    .recruitment-list li {
        font-size: var(--font-size-small);
    }

.about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1rem;
    line-height: 1.2;
    padding-bottom: 15px;
}

.cta-trust h2 {
    font-size: 1.8rem;
    line-height: 1.2;
}

section.section.values .container {
    text-align: left;
}

.contact-heading {
    font-size: 2rem;
}

.contact-text {
    font-size: 1.1rem;
}

p.footer-description {
    font-size: 1rem;
    line-height: 1.1rem;
}
}