/* Kollmannsberger KG - Enterprise Theme */
/* Farbschema basierend auf Original: Blau, Weiß, Grau */

:root {
    --primary: #1a5a8a;
    --primary-dark: #134a70;
    --primary-light: #2a7ab0;
    --secondary: #2c3e50;
    --dark: #222222;
    --text: #333333;
    --text-light: #666666;
    --gray: #888888;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   HEADER
======================================== */
header {
    background: var(--white);
}

.header-top {
    background: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.header-top-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.header-top a {
    color: var(--primary);
    font-size: 0.875rem;
}

.header-top a:hover {
    text-decoration: underline;
}

.header-main {
    padding: 1rem 0;
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.tagline {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    margin: 0 -1.5rem;
}

.tagline strong {
    font-weight: 600;
}

/* ========================================
   NAVIGATION
======================================== */
.nav-main {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    position: absolute;
    left: 1rem;
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.875rem 0;
    white-space: nowrap;
    padding: 0.75rem 0;
}

.nav-main > .nav-container > ul,
#nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding-left: 180px;
    padding-right: 20px;
    padding: 0;
}

.nav-main li {
    position: relative;
}

.nav-main li > a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.nav-main li > a:hover,
.nav-main li.active > a {
    background: var(--primary-dark);
    text-decoration: none;
}

/* Dropdown */
.nav-main .dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
    z-index: 100;
    padding: 0;
    margin: 0;
}

.nav-main .has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-main .dropdown li a {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}

.nav-main .dropdown li:last-child a {
    border-bottom: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    background: transparent;
    border: none;
    z-index: 101;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    background: var(--primary);
    overflow: hidden;
}

.hero {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    background: none;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* ========================================
   FULLSCREEN HERO (Homepage)
======================================== */
.has-fullscreen-hero .nav-main {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 100;
    background: rgba(26, 90, 138, 0.95);
}

.has-fullscreen-hero .nav-main.scrolled {
    position: fixed;
    top: 0;
    bottom: auto;
    background: var(--primary);
}

/* Dropups when nav is at bottom */
.has-fullscreen-hero .nav-main:not(.scrolled) .dropdown {
    top: auto;
    bottom: 100%;
    transform: translateY(5px);
}

.has-fullscreen-hero .nav-main:not(.scrolled) .has-dropdown:hover > .dropdown {
    transform: translateY(0);
}

.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content-center h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 180px;
}

.hero-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(10px);
    }
    60% {
        transform: rotate(45deg) translateY(5px);
    }
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Home Content */
.home-content {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .hero-fullscreen {
        background-attachment: scroll;
        min-height: 100vh;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll-indicator {
        bottom: 100px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .has-fullscreen-hero .nav-main {
        position: fixed;
        top: 0;
        bottom: auto;
    }

    /* Modern page hero responsive */
    .page-hero-banner {
        height: 200px;
    }

    .hero-banner-content h1 {
        font-size: 1.75rem;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
    }

    .content-card {
        padding: 1.5rem;
    }

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

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

    .cta-box h2 {
        font-size: 1.375rem;
    }
}

/* Page Hero (for subpages) */
.page-hero {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.hero-content {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat .label {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   SECTIONS
======================================== */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-header .overline {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-light);
}

.bg-light {
    background: var(--gray-light);
}

.bg-primary {
    background: var(--primary);
}

/* ========================================
   CARDS
======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    padding: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========================================
   FEATURE SECTIONS
======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content h2 {
    margin-bottom: 1rem;
}

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

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   TEAM SECTION
======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
}

.team-card:hover {
    box-shadow: var(--shadow);
}

.team-card h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card .contact-info {
    font-size: 0.875rem;
    color: var(--text);
}

.team-card .contact-info p {
    margin-bottom: 0.25rem;
}

.team-card .contact-info a {
    color: var(--primary);
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    background: var(--primary);
    text-align: center;
    padding: 3rem 1.5rem;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta .btn:hover {
    background: transparent;
    color: var(--white);
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    background: var(--primary);
    padding: 3rem 0 2rem;
    margin-bottom: 0;
}

.page-header .container {
    text-align: left;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.9);
}

.page-header .breadcrumb a:hover {
    color: var(--white);
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-content {
    padding: 2.5rem 0;
}

.content-wrapper {
    max-width: 800px;
}

.content-wrapper h2 {
    margin-top: 2rem;
    color: var(--primary);
}

.content-wrapper h3 {
    margin-top: 1.5rem;
    color: var(--primary);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.content-wrapper strong {
    color: var(--dark);
}

/* ========================================
   MODERN PAGE HERO BANNER
======================================== */
.page-hero-banner {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 90, 138, 0.55) 0%, rgba(19, 74, 112, 0.65) 100%);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-banner-content h1 {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-banner-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin: 0;
}

/* ========================================
   MODERN CONTENT SECTIONS
======================================== */
.page-content.modern {
    padding: 4rem 0;
    background: var(--gray-light);
}

.content-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
}

.content-card h2 {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    margin-top: 1.5rem;
    color: var(--primary);
}

.content-card ul,
.content-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-card li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* ========================================
   EQUIPMENT / FEATURES SECTION
======================================== */
.equipment-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
}

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

.equipment-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

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

.equipment-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.equipment-card h3 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.equipment-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* ========================================
   PAGE CTA SECTION
======================================== */
.page-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
}

.cta-box .btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* ========================================
   FEATURE CARDS (Generic)
======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* Highlight numbers */
.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.contact-info-box h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-info-box p {
    margin-bottom: 0.75rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 90, 138, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   JOBS
======================================== */
.job-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-card:hover {
    box-shadow: var(--shadow);
}

.job-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.job-card .job-type {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.job-card p,
.job-card .job-description {
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.job-card .job-info {
    flex: 1;
}

.job-card .job-requirements {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-medium);
    font-size: 0.875rem;
    color: var(--text);
}

.job-card .job-requirements strong {
    color: var(--primary);
}

/* ========================================
   TIMELINE
======================================== */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--white);
    transform: translateX(-5px);
}

.timeline-item .year {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    margin: 0;
    color: var(--text);
}

/* Intro and Outro Text */
.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.outro-text {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-medium);
}

.outro-text h2 {
    margin-top: 0;
}

/* ========================================
   APPLICATION PAGE
======================================== */
.application-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.application-info {
    position: sticky;
    top: 80px;
}

.benefits-box,
.requirements-box {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.benefits-box h3,
.requirements-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.benefits-list,
.requirements-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li,
.requirements-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.contact-alternative {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.contact-alternative h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-alternative p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.application-form {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 2rem;
    border-radius: 4px;
}

.application-form h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

input[type="file"] {
    padding: 0.5rem;
    border: 1px dashed var(--gray-medium);
    border-radius: 4px;
    background: var(--gray-light);
}

@media (max-width: 1024px) {
    .application-grid {
        grid-template-columns: 1fr;
    }

    .application-info {
        position: static;
    }
}

@media (max-width: 1250px) {
    .nav-logo {
        display: none;
    }

    .nav-main > .nav-container > ul,
    #nav-menu {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TABLES
======================================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

table th,
table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
    color: var(--text);
}

table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--dark);
}

table tr:hover {
    background: rgba(26, 90, 138, 0.03);
}

/* ========================================
   TIMELINE SECTION (Compact)
======================================== */
.timeline-section {
    padding: 4rem 0;
    background: var(--white);
}

.timeline-modern {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

/* Vertical line */
.timeline-modern::before {
    content: '';
    position: absolute;
    left: 85px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.timeline-item-modern {
    position: relative;
    padding: 0 0 2rem 2rem;
}

.timeline-item-modern:last-child {
    padding-bottom: 0;
}

/* Circle dot */
.timeline-item-modern::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--primary-light);
}

.timeline-year {
    position: absolute;
    left: -100px;
    top: 0;
    width: 70px;
    text-align: right;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.timeline-content h3 {
    color: var(--dark);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ========================================
   TEAM SECTION (Modern)
======================================== */
.team-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.team-card-modern {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.team-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.team-card-modern h3 {
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-phone,
.team-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

.team-phone:hover,
.team-email:hover {
    color: var(--primary);
    text-decoration: none;
}

/* ========================================
   JOBS SECTION (Modern)
======================================== */
.jobs-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.job-card-modern {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.job-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.job-header h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.25rem;
}

.job-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.job-description {
    color: var(--text);
    margin-bottom: 1rem;
}

.job-requirements {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.job-requirements strong {
    color: var(--primary);
}

.job-footer {
    margin-top: auto;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

/* ========================================
   CONTACT SECTION (Modern)
======================================== */
.contact-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

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

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro p {
    font-size: 1.125rem;
    color: var(--text);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    margin: 0;
    color: var(--text);
}

.contact-card-content a {
    color: var(--text);
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-card-content .fax {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-modern h2 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-modern .form-group {
    margin-bottom: 1rem;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 90, 138, 0.1);
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: var(--gray);
}

.btn-block {
    width: 100%;
}

/* Lead text */
.lead {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    /* Timeline mobile */
    .timeline-modern {
        padding-left: 70px;
    }

    .timeline-modern::before {
        left: 55px;
    }

    .timeline-year {
        left: -70px;
        width: 50px;
        font-size: 0.9375rem;
    }

    .team-grid-modern {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.footer-column ul li a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-left: 1.5rem;
}

.footer-legal a:hover {
    color: var(--white);
    text-decoration: none;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Hide desktop header on mobile */
    #header {
        display: none;
    }

    /* Mobile Navigation */
    .nav-container {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-logo {
        display: block;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    #nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    #nav-menu.active {
        display: flex;
    }

    .nav-main li > a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-main .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--primary-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-main .has-dropdown.open .dropdown {
        max-height: 500px;
    }

    .nav-main .dropdown li a {
        padding-left: 2.5rem;
    }

    /* Tagline responsive */
    .tagline {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat .number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 0.75rem;
    }

    section {
        padding: 2rem 0;
    }

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

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

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }

/* Print */
@media print {
    header, footer, .cta, .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .page-header {
        background: none;
        padding: 1rem 0;
    }

    .page-header h1 {
        color: #000;
    }
}
