/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-brand:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    margin-left: 0.5rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.nav-mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #3b82f6;
}

/* ===== HERO SECTION PERSONALISIERT ===== */
.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Personal Highlights */
.personal-highlights {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #475569;
}

.highlight i {
    color: #3b82f6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Branchenerfahrung im Hero Bereich */
.hero-experience {
    margin: 2.5rem 0 0 0;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.experience-bar {
    margin-bottom: 1.5rem;
}

.experience-bar:last-child {
    margin-bottom: 0;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.bar-label i {
    margin-right: 0.5rem;
    color: #3b82f6;
}

.bar-value {
    color: #3b82f6;
    font-weight: 700;
}

.bar-container {
    height: 24px;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    width: 0;
    position: relative;
}

.automotive-bar {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.it-bar {
    background: linear-gradient(90deg, #10b981, #059669);
}

.bar-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}

/* Hero Image KORRIGIERT für rechteckige Bilder */
.hero-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.profile-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    height: 600px; /* Höher für rechteckiges Format */
    width: 100%; /* Breite an Container anpassen */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild wird zugeschnitten, um den Container zu füllen */
    object-position: center 25%; /* Zentrierung mit Fokus auf oberen Teil */
}

.availability {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #059669;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite; /* Diese Zeile hinzufügen */
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Quick Profile */
.quick-profile {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quick-profile h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-profile p {
    color: #1e293b;
    font-weight: 500;
}

.quick-profile h4:first-child {
    margin-top: 0;
}

/* ===== ÜBER MICH SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #475569;
}

.personal-qualities {
    margin-top: 2.5rem;
}

.personal-qualities h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.quality {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.quality:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.quality i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.quality h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.quality p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* About Stats */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateX(5px);
    border-color: #3b82f6;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.stat-info h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin: 0;
}

.stat-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Languages Card KORRIGIERT - alles in einer Zeile, linksbündig */
.languages-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.languages-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.language-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Ändere von 1rem auf 0.5rem */
}

.language-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0; /* Ändere von 0.5rem auf 0.25rem */
    min-height: 30px; /* Ändere von 40px auf 30px (optional) */
}

.language-name {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    min-width: 80px;
    text-align: left;
    flex-shrink: 0;
}

.language-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 120px;
    margin: 0 1rem;
}

.level-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
}

.level-dot.active {
    background: #3b82f6;
}

.language-level-text {
    font-size: 0.8rem;
    color: #64748b;
    text-align: left;
    min-width: 120px;
    flex-shrink: 0;
}

/* ===== TIMELINE SECTION ===== */
.experience-timeline {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 180px;
    margin-bottom: 2.5rem;
}

.timeline-item.current::before {
    background: #10b981;
    border-color: #10b981;
}

.timeline-item.education::before {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 134px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
    z-index: 1;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: 600;
    color: #3b82f6;
    font-size: 0.9rem;
    width: 130px;
    text-align: right;
    line-height: 1.4;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1rem;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.25rem;
}

.timeline-content li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expertise-card ul {
    list-style: none;
}

.expertise-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.expertise-card li::before {
    content: '•';
    color: #3b82f6;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

/* Tools Section */
.tools-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.tools-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-category h4 {
    color: #475569;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== PROJEKTE SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.project-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    font-size: 1.25rem;
    margin: 0;
}

.project-year {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-client {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.95rem;
}

.project-description {
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-description p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.project-achievements {
    margin-bottom: 1.5rem;
}

.project-achievements h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.project-achievements ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.project-achievements li {
    padding: 0.25rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.project-achievements li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== ZERTIFIKATE SECTION ===== */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s;
}

.certification-card:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.certification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.certification-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.certification-institution {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.certification-period {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.certification-details {
    color: #475569;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    margin-top: 3rem;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    width: 180px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.process-step:hover .step-circle {
    transform: scale(1.15);
    background: #3b82f6;
    color: white;
}

.process-step.active .step-circle {
    transform: scale(1.15);
    background: #3b82f6;
    color: white;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #3b82f6;
    border: 3px solid #3b82f6;
    transition: all 0.3s;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.process-step p {
    font-size: 0.9rem;
    color: #64748b;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 90px;
    right: 90px;
    height: 3px;
    background: linear-gradient(90deg, 
        #3b82f6 0%, 
        #3b82f6 20%, 
        #10b981 20%, 
        #10b981 40%, 
        #f59e0b 40%, 
        #f59e0b 60%, 
        #ef4444 60%, 
        #ef4444 80%, 
        #8b5cf6 80%, 
        #8b5cf6 100%);
    z-index: 1;
}

.process-details {
    margin-top: 4rem;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    min-height: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.process-detail-active {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.detail-description {
    color: #64748b;
    font-size: 0.95rem;
}

.detail-activities {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-activities li {
    padding: 0.75rem;
    color: #475569;
    position: relative;
    padding-left: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    transition: transform 0.2s;
}

.detail-activities li:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.detail-activities li::before {
    content: '✓';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form, .contact-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h3, .contact-info h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.2s;
}

.info-item:hover {
    transform: translateX(5px);
    background: #f1f5f9;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #e0f2fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #1e293b;
    font-weight: 500;
}

.info-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.info-link:hover {
    text-decoration: underline;
}

.availability-card {
    margin-top: 2rem;
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.availability-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.availability-header h4 {
    color: #0369a1;
    margin: 0;
    font-size: 1.1rem;
}

.availability-card p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.availability-desc {
    font-size: 0.9rem;
    color: #64748b;
}

.download-cv {
    margin-top: 2rem;
    text-align: center;
}

.download-cv .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #94a3b8;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-column a,
.footer-column span {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-motto {
    margin-top: 0.5rem;
    font-style: italic;
    color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qualities-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 120px;
    }
    
    .timeline-item {
        padding-left: 150px;
    }
    
    .timeline-date {
        width: 110px;
    }
    
    .timeline-item::before {
        left: 114px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        width: 150px;
    }
    
    /* Sprachkenntnisse für Tablet */
    .language-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .language-dots {
        justify-content: flex-start;
        margin-left: 0;
    }
    
    .language-level-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .personal-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-date {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .timeline-item::before {
        left: 14px;
        top: 30px;
    }
    
    /* Process Steps für Mobile */
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .detail-activities {
        grid-template-columns: 1fr;
    }
    
    /* Profilbild für Mobile */
    .profile-image {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-experience {
        padding: 1rem;
    }
    
    .bar-container {
        height: 20px;
    }
    
    .bar-text {
        font-size: 0.75rem;
        padding-right: 10px;
    }
    
    .profile-image {
        height: 450px;
    }
    
    .qualities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form, .contact-info {
        padding: 1.5rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .certification-icon {
        align-self: flex-start;
    }
    
    /* Sprachkenntnisse für Mobile */
    .language-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .language-dots {
        justify-content: flex-start;
        margin-left: 0;
    }
    
    .language-level-text {
        text-align: left;
    }
}
/* ===== DEZENTE HINWEISE AUF VERTRAGSVERLÄNGERUNGEN ===== */

/* Hero-Bereich Trust Indicator */
.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0 1.5rem;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    animation: fadeInUp 0.8s ease;
}

.trust-indicator i {
    color: #10b981;
    animation: rotate 3s infinite linear;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Über-mich Bereich Client Continuity */
.client-continuity {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #3b82f6;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-continuity:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.client-continuity h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.client-continuity h4 i {
    color: #3b82f6;
}

.client-continuity p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.client-continuity strong {
    color: #1e293b;
    font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .trust-indicator {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        margin: 0.3rem 0 1.2rem;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .client-continuity {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .client-continuity h4 {
        font-size: 1rem;
    }
    
    .client-continuity p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trust-indicator {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .trust-indicator span {
        text-align: center;
    }
}
