@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===========================
   CSS Variablen & Reset
   =========================== */
:root {
    /* Farben basierend auf rs-consulting.info */
    --primary-blue: #1e3a5f;
    --secondary-blue: #2c5282;
    --light-blue: #4a7ba7;
    --highlight-gold: #d4af37;
    --highlight-light: #f4e4c1;
    --dark-gray: #2d3748;
    --medium-gray: #718096;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --off-white: #f7fafc;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    
    /* Schatten */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Übergänge */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Schriftarten */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    border: 2px solid var(--highlight-gold);
    border-radius: 8px;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
    background-color: var(--primary-blue);
    color: var(--white);
    z-index: 2000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
    outline: 3px solid var(--highlight-gold);
    outline-offset: 3px;
}

.nav-link:focus-visible,
.cta-button:focus-visible,
.btn:focus-visible,
.social-links a:focus-visible,
.mobile-menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--highlight-gold);
}

.nav-link:focus-visible::after {
    width: 100%;
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section {
    padding: 80px 0;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-medium);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(30, 58, 95, 0.98);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: all var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-video video::-webkit-media-controls {
    display: none !important;
}

.hero-video video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(44, 82, 130, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--highlight-gold);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--highlight-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        transform: translateY(0) !important;
    }

    .hero-text h1,
    .hero-subtitle,
    .hero-buttons,
    .mouse::after {
        animation: none !important;
    }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.btn-primary {
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: var(--highlight-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===========================
   Sections
   =========================== */
.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--highlight-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Parallax Sections
   =========================== */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(44, 82, 130, 0.92));
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

/* ===========================
   Trust Section (Stats)
   =========================== */
.trust-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--highlight-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    background-color: var(--off-white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-column h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-column p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.parallax-image {
    transition: transform 0.5s ease-out;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.services-section .section-label {
    color: var(--highlight-gold);
}

.services-section .section-header h2,
.services-section .section-header p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--highlight-gold);
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    background-color: var(--off-white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    /* Default: Box-Layout für mobile/tablet */
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--highlight-gold), var(--primary-blue));
    display: none; /* Hidden by default, nur ab 1200px */
}

.timeline-item {
    /* Default: Box-Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: none;
    gap: 0;
    margin: 0;
    background-color: var(--white);
    padding: 22px 18px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-row: auto;
    grid-column: auto;
    text-align: inherit;
}

.timeline-item:nth-child(odd) .timeline-number {
    grid-row: auto;
    grid-column: auto;
    align-self: auto;
}

.timeline-item:nth-child(even) .timeline-number {
    grid-row: auto;
    grid-column: auto;
    align-self: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-row: auto;
    grid-column: auto;
    text-align: inherit;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
    margin: 0 0 14px 0;
}

.timeline-content {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition-medium);
}

.timeline-content:hover {
    box-shadow: none;
    transform: none;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--highlight-gold);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 15px;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--highlight-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
    padding: 0;
}

.social-links a:hover {
    background-color: var(--highlight-gold);
    transform: translateY(-3px);
    padding-left: 0;
}

.social-links a:hover svg {
    color: var(--dark-gray);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.page-header-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-header-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* ===========================
   Services Detail Page
   =========================== */
.services-detail-section {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content {
    position: relative;
}

.service-number {
    font-size: 80px;
    font-weight: 700;
    color: var(--highlight-light);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 0;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===========================
   Process Detail Page
   =========================== */
.process-detail-section {
    padding: 80px 0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.process-step:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.step-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 20px;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.step-duration {
    display: inline-block;
    font-size: 14px;
    color: var(--medium-gray);
    background-color: var(--light-gray);
    padding: 5px 15px;
    border-radius: 20px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.timeline-overview {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--off-white), var(--light-gray));
    border-radius: 15px;
    border-left: 5px solid var(--highlight-gold);
}

.timeline-overview h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.timeline-overview p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===========================
   About Page
   =========================== */
.about-content-section {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro-layout {
    max-width: 1100px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
    gap: 50px;
    align-items: stretch;
    text-align: left;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-text h2 {
    margin-top: 0;
}

.about-intro-text .lead + .lead {
    margin-top: 20px;
}

.about-intro-text .about-points {
    margin: 12px 0 12px;
    padding-left: 0;
}

.about-intro-text .about-points li {
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-intro-text .about-points li + li {
    margin-top: 6px;
}

.about-intro-text .about-points li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0.9em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--highlight-gold);
    transform: translateY(-50%);
}

.about-intro-image .image-wrapper {
    max-width: 360px;
    margin-left: auto;
    aspect-ratio: auto;
}

.about-intro-image .image-wrapper img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    .about-intro-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-intro-image .parallax-image {
        transform: none !important;
        transition: none;
    }

    .about-intro-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-intro-text .about-points {
        text-align: left;
        padding-left: 20px;
    }
}

.about-intro h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    stroke-width: 1.5;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 100px 0;
}

.expertise-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.expertise-item {
    text-align: center;
    padding: 30px;
}

.expertise-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--highlight-gold);
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.why-us-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-medium);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-number {
    position: absolute;
    top: -20px;
    left: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.why-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 30px 0 15px;
}

.why-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   Contact Page
   =========================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    stroke-width: 2;
}

.contact-method h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-link-highlight {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.contact-link-highlight:hover,
.contact-link-highlight:focus-visible {
    color: var(--highlight-gold);
}

.contact-hours {
    font-size: 14px;
    color: var(--medium-gray);
    display: block;
    margin-top: 5px;
}

.privacy-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--highlight-light);
    border-radius: 10px;
    border-left: 4px solid var(--highlight-gold);
}

.privacy-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--primary-blue);
    stroke-width: 2;
}

.privacy-note p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-form > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-status-message {
    display: none;
    margin-bottom: 24px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.5;
}

.form-status-message.visible {
    display: block;
}

.form-status-message.success {
    background-color: var(--off-white);
    border-color: var(--secondary-blue);
    color: var(--primary-blue);
}

.form-status-message.error {
    background-color: var(--highlight-light);
    border-color: var(--highlight-gold);
    color: var(--primary-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-gold);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:focus,
.checkbox-group input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--highlight-gold);
    border-radius: 4px;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.field-error {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.checkbox-group input[aria-invalid="true"] {
    border-color: var(--highlight-gold);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* ===========================
   Legal Pages
   =========================== */
.legal-content {
    padding: 60px 0;
    background-color: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-wrapper p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-wrapper a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: var(--highlight-gold);
}

.legal-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
    font-size: 14px;
    color: var(--medium-gray);
}

/* ===========================
   AOS Animation Styles
   =========================== */
[data-aos] {
    transition-property: transform, opacity;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .section-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-xl);
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-menu.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .content-column h2 {
        font-size: 28px;
    }
    
    .content-column p {
        font-size: 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .image-wrapper img {
        max-height: 400px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .timeline-item {
        padding: 18px 14px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .image-wrapper {
        border-radius: 10px;
    }
    
    .image-wrapper img {
        max-height: 300px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .content-column h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-header-content h1 {
        font-size: 26px;
    }
    
    .page-header-content p {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

/* Extra kleine Geräte */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .page-header-content h1 {
        font-size: 24px;
    }
}

/* ===========================
   Desktop Timeline (große Auflösungen ab 1200px)
   =========================== */
@media (min-width: 1200px) {
    .timeline {
        max-width: 900px;
        display: grid;
        grid-template-columns: none;
        flex-direction: none;
        gap: 0;
    }
    
    .timeline::before {
        display: block;
        left: 50%;
    }
    
    .timeline-item {
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        row-gap: 18px;
        margin-bottom: 60px;
        align-items: start;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        grid-row: 2;
        grid-column: 1;
        text-align: right;
        background: white;
        padding: 35px;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .timeline-item:nth-child(odd) .timeline-number {
        grid-row: 1;
        grid-column: 2;
        align-self: start;
    }
    
    .timeline-item:nth-child(even) .timeline-number {
        grid-row: 1;
        grid-column: 2;
        align-self: start;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-row: 2;
        grid-column: 3;
        text-align: left;
        background: white;
        padding: 35px;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .timeline-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
        margin: 0;
    }
    
    .timeline-content {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        transition: all var(--transition-medium);
    }
    
    .timeline-content:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-5px);
    }
}

/* ===========================
   Booking/Termin Page
   =========================== */
.booking-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.booking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.booking-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.booking-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Kalender-Integration mit voller Breite */
.booking-calendar-fullwidth {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calendar-wrapper {
    min-height: 700px;
    position: relative;
}

/* Placeholder für Kalender */
.calendar-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--off-white), var(--light-gray));
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 25px;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
    stroke-width: 2;
}

.calendar-placeholder h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.calendar-placeholder > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.integration-options,
.integration-instructions {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    box-shadow: var(--shadow-sm);
}

.integration-options h4,
.integration-instructions h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.integration-options ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integration-options li {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.integration-options li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-gold);
    font-weight: 700;
}

.integration-instructions ol {
    list-style: decimal;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.integration-instructions li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Alternative Booking Methods */
.alternative-booking {
    text-align: center;
    margin-top: 80px;
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.alternative-booking h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.alternative-booking > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.alternative-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.alt-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--off-white), var(--light-gray));
    border-radius: 50px;
    transition: all var(--transition-medium);
    color: var(--primary-blue);
    font-weight: 500;
}

.alt-method svg {
    width: 24px;
    height: 24px;
    stroke: var(--highlight-gold);
    stroke-width: 2;
}

.alt-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--highlight-gold), #c99b2a);
    color: var(--white);
}

.alt-method:hover svg {
    stroke: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--off-white);
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--highlight-gold);
    transition: all var(--transition-medium);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive für Booking Page */
@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-info {
        order: 2;
    }
    
    .booking-calendar {
        order: 1;
    }
}

@media (max-width: 768px) {
    .booking-intro h2 {
        font-size: 28px;
    }
    
    .booking-calendar-fullwidth {
        border-radius: 10px;
        margin: 0 20px;
    }
    
    .calendar-wrapper {
        min-height: 600px;
    }
    
    .alternative-methods {
        flex-direction: column;
        align-items: stretch;
    }
    
    .alt-method {
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .hero-buttons,
    .cta-section,
    .footer,
    .scroll-indicator {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    section {
        page-break-inside: avoid;
    }
}