/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 400;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #1e3a8a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a, #172554);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== LANGUAGE TOGGLE ===== */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.lang-btn.active,
.lang-btn:hover {
    background: #2563eb;
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo-img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.navbar.scrolled .logo-img {
    height: 60px;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.logo-layer {
    top: 80px;
    height: calc(100% - 80px);
}

.bg-image {
    width: 100%;
    height: 100%;
    object-position: center;
}

.logo-bg {
    object-fit: contain;
    opacity: 1;
    filter: none;
    animation: logoFadeOut 1s ease-out 3s forwards;
}

.bridge-bg {
    object-fit: cover;
    opacity: 0;
    filter: blur(1px);
    animation: bridgeFadeIn 1s ease-out 3.2s forwards;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInUpDelayed 1s ease-out 3.5s forwards;
}

.hero-title .highlight {
    display: block;
    color: #2563eb;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #2d3748;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeInUpDelayed 1s ease-out 4s forwards;
}

.hero-highlight {
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid rgba(37, 99, 235, 0.2);
    color: #1a1a1a;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-highlight h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-highlight p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUpDelayed 1s ease-out 4.5s forwards;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ===== INTRODUCTION SECTION ===== */
.introduction {
    padding: 60px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.intro-lead {
    font-size: 1.3rem !important;
    color: #1a1a1a !important;
    margin-bottom: 2rem !important;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #2d3748;
    line-height: 1.7;
    font-size: 1rem;
}

.service-details {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-details li {
    margin: 0.5rem 0;
}

/* ===== LEGAL NOTICE ===== */
.legal-notice {
    background: linear-gradient(135deg, #f8f9ff, #e6f3ff);
    border: 1px solid #b3d9ff;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto 0;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.notice-icon {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.2rem;
}

.notice-content h4 {
    margin: 0 0 0.8rem 0;
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
}

.notice-content p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: white;
}

.about-portrait {
    text-align: center;
    margin: 3rem 0;
}

.landscape-portrait {
    width: 100%;
    max-width: 900px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.expertise-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    background: white;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.expertise-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-card p {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

.core-competencies {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.core-competencies h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.competency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.competency-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.competency-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.competency-item span {
    color: #2d3748;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.projects .section-header h2,
.projects .section-header p {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

.package-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.package-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.package-header h3 {
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #2d3748;
    font-size: 1rem;
}

.package-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.package-duration {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 500;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

.advantage-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    background: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.advantage-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-card p {
    color: #2d3748;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== TARGET GROUPS SECTION ===== */
.target-groups {
    padding: 80px 0;
    background: white;
}

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

.target-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.target-content {
    margin-top: 1.5rem;
}

.target-content h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.target-content ul {
    list-style: none;
    text-align: left;
}

.target-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.4;
}

.target-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.target-image {
    width: 100%;
    margin-bottom: 1rem;
}

.target-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.target-group:hover .target-image img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.target-groups-closing {
    margin-top: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.target-groups-closing p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0;
    text-align: left;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.contact-option.primary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2563eb;
    position: relative;
}

.contact-option.primary::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.contact-option h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-option p {
    color: #4a5568;
    margin-bottom: 0;
}

.contact-option-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.contact-option-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #d1d5db;
}

.contact-option-divider span {
    background: #f8fafc;
    color: #6b7280;
    padding: 0 1rem;
    font-weight: 500;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.contact-method h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-method a {
    color: #2563eb;
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-copyright {
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Animation Deaktivierung */
@media (max-width: 768px) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0.01ms !important;
    }
    
    .logo-bg {
        display: none !important;
    }
    
    .bridge-bg {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .hero-title {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .hero-subtitle {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .legal-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 2rem auto 0;
    }
}

@keyframes fadeInUpDelayed {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.6);
        visibility: hidden;
    }
}

@keyframes bridgeFadeIn {
    from {
        opacity: 0;
        filter: blur(2px);
    }
    to {
        opacity: 0.2;
        filter: blur(1px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Parallax effect */
.parallax-element {
    transform: translateY(var(--scroll-offset, 0));
}

/* ===== FORM ACTIONS ===== */
.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-portrait {
        margin: 2rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-option.primary::before {
        font-size: 0.75rem;
        top: -10px;
    }
    
    .target-groups-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .target-image img {
        height: 200px;
    }
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .landscape-portrait {
        height: 300px;
    }
    
    .target-groups-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-toggle {
        position: absolute;
        right: 20px;
    }
    
    .nav-logo .logo-img {
        height: 60px;
    }
    
    .navbar.scrolled .logo-img {
        height: 50px;
    }
    
    .navbar {
        padding: 35px 0;
    }
    
    .navbar.scrolled {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-highlight {
        margin: 1.5rem auto;
        padding: 1.25rem 1.5rem;
    }
    
    .hero-highlight h3 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding-top: 160px;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .introduction {
        padding: 40px 0;
    }
    
    .intro-content p {
        font-size: 1.05rem;
    }
    
    .intro-lead {
        font-size: 1.2rem !important;
    }
    
    .intro-closing {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .bridge-bg {
        opacity: 0.1 !important;
    }
    
    .landscape-portrait {
        height: 250px;
    }
    
    .expertise-card,
    .core-competencies {
        padding: 1.5rem;
    }
    
    .competency-item {
        padding: 0.75rem;
    }
    
    .service-card,
    .package-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .language-toggle {
        top: 15px;
        left: 15px;
        right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 100px 0 60px;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2563eb;
}

.legal-content h2 {
    color: #2563eb;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.legal-content h3 {
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .legal-page {
        padding: 80px 0 40px;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #111;
        --text-color: #fff;
        --card-bg: #222;
    }
}

/* ===== COOKIE SETTINGS BUTTON ===== */
.cookie-settings-floating {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #2563eb !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.cookie-settings-floating:hover {
    opacity: 1 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
}

.cookie-settings-floating:active {
    transform: scale(1.2) !important;
}

@media (max-width: 768px) {
    .cookie-settings-floating {
        bottom: 80px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .language-toggle,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}