/* ============================================
   ETMX Elektrotechnik - Main Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-primary: #fed401;
    --color-primary-dark: #e5bf00;
    --color-secondary: #727272;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    --transition: 0.3s ease;
    --radius-sm: 2px;
    --radius-md: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    max-width: 75ch;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: 1400px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #f5f5f5;
    color: var(--color-text);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.top-bar a,
.top-bar .fax-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
}

.top-bar a:hover {
    color: var(--color-primary-dark);
}

.top-bar svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    vertical-align: middle;
}

.top-bar .fax-link {
    display: none;
}

@media (min-width: 768px) {
    .top-bar .fax-link {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .top-bar a span {
        display: none;
    }
    .top-bar svg {
        width: 20px;
        height: 20px;
    }
    .top-bar .container {
        gap: 1rem;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo svg {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    position: relative;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.nav-list li:last-child .nav-link {
    padding-right: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-dark);
    background: var(--color-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle - Animated Burger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.nav-toggle svg {
    display: none;
}

.burger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    position: relative;
    transition: var(--transition);
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.burger-icon::before {
    top: -6px;
}

.burger-icon::after {
    top: 6px;
}

/* Burger to X animation */
.nav-toggle.active .burger-icon {
    background: transparent;
}

.nav-toggle.active .burger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .burger-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1rem;
        z-index: 1001;
        background: transparent;
        border: none;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
        transform: translateY(-100%);
        opacity: 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.125rem;
        text-align: center;
    }
    
    /* Hide nav-close button - using animated burger instead */
    .nav-close {
        display: none !important;
    }
    
    /* Mobile contact buttons at bottom of menu */
    .nav-mobile-contact {
        display: flex;
        gap: 1rem;
        margin-top: auto;
        padding-top: 2rem;
        justify-content: center;
    }
    
    .nav-mobile-contact a {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary);
        border-radius: var(--radius-sm);
    }
    
    .nav-mobile-contact svg {
        width: 24px;
        height: 24px;
        color: var(--color-dark);
    }
}

/* Hide nav-close completely - using animated burger */
.nav-close {
    display: none !important;
}

/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    animation: kenburns-reverse 8s ease-out forwards;
}

@keyframes kenburns-reverse {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.hero-slide:not(.active) img {
    animation: none;
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.4;
}

.hero-indicator:hover {
    opacity: 0.7;
}

.hero-indicator.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--color-light);
    padding: 4rem 0;
}

.cta-box {
    background: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
}

.btn svg {
    width: 20px;
    height: 20px;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SUBHEADER
   ============================================ */
.subheader {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.subheader-bg {
    position: absolute;
    inset: 0;
}

.subheader-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subheader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.6) 100%);
}

.subheader-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.subheader-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    text-align: left;
    display: inline-block;
    position: relative;
    padding-bottom: 0.75rem;
}

.subheader-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.subheader-subtitle {
    color: rgba(255,255,255,0.8);
    margin-top: 0.75rem;
    font-size: 1rem;
}

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

.section-light {
    background: var(--color-light);
}

.section-title {
    text-align: left;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

.section-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    margin-top: 0.75rem;
}

/* ============================================
   LEISTUNGEN GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

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

.service-card {
    position: relative;
    background: var(--color-white);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 156px;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
}

.service-content {
    padding: 2rem 1.5rem 1.5rem;
}

.service-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 0.9375rem;
}

/* Service Card Wide - 5/4 Layout */
.service-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-light);
}

.service-card-wide:hover {
    transform: none;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-content .service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-detail-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.service-detail-image {
    display: flex;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .service-card-wide {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        order: -1;
    }
}

/* ============================================
   PROJEKTE GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 1.25rem;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   PARTNER
   ============================================ */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-item {
    transition: var(--transition);
}

.partner-item img {
    max-height: 300px;
    max-width: 400px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
}

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

.contact-info h3 {
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

.contact-map {
    position: relative;
    min-height: 400px;
    height: 100%;
    background: var(--color-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-fallback {
    display: none;
    width: 100%;
    height: 100%;
}

.map-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FOOTER (vulkanisiertec style)
   ============================================ */
.footer {
    background: #f5f5f5;
    color: var(--color-text);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-title {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: var(--color-text-light);
}

.footer-links a:first-child {
    padding-top: 0;
}

.footer-links a:hover {
    color: var(--color-primary-dark);
}

.footer-links svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact p,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.footer-contact a:hover {
    color: var(--color-primary-dark);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo svg {
    height: 80px;
    width: auto;
}

.footer-bottom {
    background: var(--color-primary);
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-dark);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--color-dark);
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   USERCENTRICS + SCROLL TO TOP BUTTON
   ============================================ */
:root {
    --btns-width: 50px;
    --btns-height: 50px;
    --btns-position: fixed;
    --btns-bg-color: var(--color-secondary);
    --btns-bg-color-active: var(--color-dark);
    --btns-color: var(--color-primary);
    --btns-border: 1px solid var(--color-primary);
    --btns-border-radius: 5px;
    --btn-backtop-size: 23px;
    --btn-uc-size: 1.2;
    --btns-box-shadow: none;
    --btns-xl-mr: 15px;
    --btn-backtop-xl-mb: 20px;
    --btn-uc-xl-mb: calc(var(--btn-backtop-xl-mb) + 65px);
    --btn-uc-opacity: 0;
    --btns-sm-mb: 15px;
}

.scroll-top {
    display: grid;
    place-content: center;
    position: var(--btns-position);
    bottom: var(--btn-backtop-xl-mb);
    right: var(--btns-xl-mr);
    width: var(--btns-width);
    height: var(--btns-height);
    padding: 0;
    background: var(--btns-bg-color);
    border: var(--btns-border);
    border-radius: var(--btns-border-radius);
    box-shadow: var(--btns-box-shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover,
.scroll-top:active,
.scroll-top:focus {
    background: var(--btns-bg-color-active);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--btns-color);
}

@media screen and (max-width: 992px) {
    .scroll-top {
        bottom: var(--btns-sm-mb);
    }
    
    .footer {
        padding-bottom: 70px;
    }
}

/* ============================================
   CTA PARALLAX SECTION
   ============================================ */
.cta-parallax {
    position: relative;
    padding: 5rem 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.8);
}

.cta-parallax .container {
    position: relative;
    z-index: 1;
}

.cta-parallax-content {
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-parallax-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-parallax-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cta-parallax {
        background-attachment: scroll;
    }
}

/* ============================================
   CONTENT BOX (2-spaltig)
   ============================================ */
.content-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    line-height: 1.15;
    font-size: clamp(1.75rem, 4vw, 2.1rem);
}

@media (max-width: 768px) {
    .content-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

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

.content-box-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.content-box-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

/* Print Styles */
@media print {
    .header, .footer, .hero-indicators, .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}
