/* Online-Marketing Seite Styles */

/* In Arbeit Section Styling */
.in-arbeit-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.in-arbeit-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.in-arbeit-icon {
    margin-bottom: 30px;
}

.in-arbeit-icon svg {
    width: 80px;
    height: 80px;
    color: #2B9184;
    animation: pulse 2s infinite;
}

.in-arbeit-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.in-arbeit-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.in-arbeit-progress {
    margin-top: 40px;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2B9184, #1F7A6F);
    border-radius: 4px;
    animation: progress-animation 3s ease-in-out infinite;
}

.progress-text {
    font-size: 1rem;
    color: #2B9184;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 0%;
    }
}

@media (max-width: 768px) {
    .in-arbeit-section {
        padding: 60px 20px;
    }

    .in-arbeit-content h2 {
        font-size: 2rem;
    }

    .in-arbeit-content p {
        font-size: 1.1rem;
    }

    .progress-bar {
        width: 250px;
    }
}

/* Webdesign Content Section Styling (wiederverwendet) */
.webdesign-content-section {
    padding: 64px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.webdesign-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.webdesign-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.webdesign-image-container {
    width: 100%;
    max-width: 620px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.webdesign-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.webdesign-text-column {
    padding: 16px 0;
}

.webdesign-heading {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

/* Horizontaler Akzent-Strich unter der Überschrift (Grünton) – Ladebalken-Animation beim Seitenload */
.webdesign-heading::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #2B9184, #1F7A6F);
    border-radius: 2px;
    margin-top: 18px;
    margin-bottom: -8px;
    animation: heading-accent-load 0.9s ease-out 0.2s forwards;
}

@keyframes heading-accent-load {
    from {
        width: 0;
    }
    to {
        width: 72px;
    }
}

.webdesign-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.webdesign-text p {
    margin: 0;
}

.webdesign-text strong {
    color: #2B9184;
    font-weight: 700;
}

/* Services Section Styling */
.services-section {
    padding: 80px 0;
    background: #e9ecef;
    color: #1a1a1a;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 145, 132, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    width: 90%;
    max-width: 900px;
    align-self: center;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(43, 145, 132, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    color: #2B9184;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(141deg) brightness(96%) contrast(86%);
}

.service-card:hover .service-icon-img {
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Section Styling */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #1a1a1a;
}

.timeline-title {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
    text-align: left;
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a1a;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, #2B9184 0%, #1F7A6F 100%);
    border-radius: 2px;
    z-index: 1;
    transform-origin: left center;
    transform: scaleX(0);
    animation: timeline-line-load 1s ease-out 0.1s forwards;
}

@keyframes timeline-line-load {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(43, 145, 132, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(43, 145, 132, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    animation: timeline-item-in 0.5s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.15s; }
.timeline-item:nth-child(2) { animation-delay: 0.35s; }
.timeline-item:nth-child(3) { animation-delay: 0.55s; }
.timeline-item:nth-child(4) { animation-delay: 0.75s; }

@keyframes timeline-item-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:hover {
    box-shadow: 0 8px 30px rgba(43, 145, 132, 0.12);
    border-color: rgba(43, 145, 132, 0.35);
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 4px solid #2B9184;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(43, 145, 132, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(43, 145, 132, 0.3);
    background: #2B9184;
}

.timeline-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2B9184;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-number {
    color: #ffffff;
}

.timeline-content {
    max-width: 100%;
}

.timeline-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-item-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #2B9184 0%, #1F7A6F 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cta-section .btn-primary {
    background: white;
    color: #2B9184;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-section .btn-secondary {
    background: #1F7A6F;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1F7A6F;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-content {
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .webdesign-content-section {
        padding: 48px 20px;
    }

    .webdesign-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .webdesign-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .webdesign-text {
        font-size: 1rem;
    }
    
    .webdesign-image-container {
        max-width: 100%;
    }

    .services-section {
        padding: 60px 20px;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        gap: 25px;
        padding: 0 16px;
    }
    
    .service-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        max-width: none;
        align-self: center !important;
        margin: 0 !important;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.95rem;
    }

    .timeline-section {
        padding: 60px 20px;
    }
    
    .timeline-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .timeline-items {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-marker {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .timeline-number {
        font-size: 1.5rem;
    }
    
    .timeline-item-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .timeline-item-description {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section {
        padding: 60px 0 48px 0;
    }
}

@media (max-width: 480px) {
    .webdesign-content-section {
        padding: 40px 16px;
    }

    .webdesign-content-grid {
        gap: 32px;
        padding: 0 12px;
    }
    
    .webdesign-heading {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .webdesign-text {
        font-size: 0.95rem;
    }
    
    .webdesign-image-container {
        max-width: 100%;
    }

    .timeline-section {
        padding: 40px 16px;
    }
    
    .timeline-title {
        font-size: 1.45rem;
        margin-bottom: 30px;
    }
    
    .timeline-items {
        gap: 40px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .timeline-number {
        font-size: 1.3rem;
    }
    
    .timeline-item-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .timeline-item-description {
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .cta-section {
        padding: 48px 0 40px 0;
    }
}
