* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-orange: #ea580c;
    --accent-green: #059669;
    --accent-amber: #d97706;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    --gradient-fresh: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
    max-height: 72px;
    object-fit: contain;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.job-count {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 4px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Company Cover */
.company-cover {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.cover-image {
    position: absolute;
    inset: 0;
    background: url('images/office-4.jpg') center/cover;
    background-color: var(--secondary-color);
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(37, 99, 235, 0.75) 50%, rgba(59, 130, 246, 0.7) 100%);
    z-index: 1;
}

.cover-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.tagline-main {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.tagline-sub {
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Services highlight - Přepravy, Sklady, Balení */
.services-highlight {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-transport {
    border-top-color: var(--primary-color);
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg-light) 100%);
}
.service-warehouse {
    border-top-color: var(--accent-green);
    background: linear-gradient(180deg, #ecfdf5 0%, var(--bg-light) 100%);
}
.service-packaging {
    border-top-color: var(--accent-amber);
    background: linear-gradient(180deg, #fffbeb 0%, var(--bg-light) 100%);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
    .tagline-main { font-size: 1.25rem; }
    .tagline-sub { font-size: 0.9rem; }
}

/* Team & Workplace Section */
.team-section {
    padding: 4rem 0;
    background: var(--gradient-fresh);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: -1.5rem auto 2.5rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.team-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.95;
}

.team-desc {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card img {
        height: 220px;
    }
}

/* Company Info */
.company-info {
    padding: 3rem 0;
    background: var(--bg-white);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.company-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 900px;
    line-height: 1.8;
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg-light) 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-green));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.stat-item:nth-child(1) { border-color: rgba(37, 99, 235, 0.3); }
.stat-item:nth-child(2) { border-color: rgba(5, 150, 105, 0.3); }
.stat-item:nth-child(3) { border-color: rgba(217, 119, 6, 0.3); }

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(1) .stat-number { color: var(--primary-color); }
.stat-item:nth-child(2) .stat-number { color: var(--accent-green); }
.stat-item:nth-child(3) .stat-number { color: var(--accent-amber); }

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: var(--bg-white);
}

.why-us-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.values-section {
    margin-top: 3rem;
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.values-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.value-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.value-item:nth-child(1) { border-left-color: var(--primary-color); }
.value-item:nth-child(2) { border-left-color: var(--accent-green); }
.value-item:nth-child(3) { border-left-color: var(--accent-amber); }
.value-item:nth-child(4) { border-left-color: #7c3aed; }
.value-item:nth-child(5) { border-left-color: var(--accent-orange); }

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.value-item p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: var(--gradient-warm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(251, 191, 36, 0.4);
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #f0f9ff 100%);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Company Details */
.company-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.company-details p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 1rem;
}

/* Jobs Section */
.jobs {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, var(--bg-white) 100%);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.job-item {
    background: var(--bg-light);
    padding: 0;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    overflow: hidden;
}

.job-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.job-image {
    flex-shrink: 0;
    width: 250px;
    height: 200px;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.job-salary {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.jobs .btn-primary {
    display: block;
    max-width: 300px;
    margin: 2rem auto 0;
}

/* Recruitment Process */
.recruitment-process {
    padding: 4rem 0;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg-light) 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #f0fdf4 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid rgba(37, 99, 235, 0.15);
    transition: box-shadow 0.3s;
}

.contact-item:hover {
    box-shadow: var(--shadow);
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .company-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-item {
        flex-direction: column;
    }

    .job-image {
        width: 100%;
        height: 200px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated .stat-number {
    animation: countUp 0.6s ease-out;
}