/* ============================================
   SEO INTRO SECTION STYLES - WEBCAREX
   ============================================ */

.seo-intro-section {
    padding: 5rem 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.seo-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gradient-x-1-start) 20%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 80%,
        transparent
    );
    opacity: 0.5;
}

.seo-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.seo-intro-content {
    flex: 1;
    text-align: left;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.seo-intro-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    position: relative;
}

.seo-image-wrapper {
    position: relative;
    overflow: visible;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Splash vorm achtergrond */
.seo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 30%,
        var(--gradient-x-2-start) 60%,
        var(--gradient-x-1-mid) 100%
    );
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
    filter: blur(30px);
    z-index: -1;
    animation: splashMorph 8s ease-in-out infinite;
}

/* Extra splash lagen voor diepte */
.seo-image-wrapper::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(
        circle at 30% 50%,
        var(--gradient-x-1-start) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 80%,
        var(--gradient-x-2-start) 0%,
        transparent 50%
    );
    border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
    opacity: 0.2;
    filter: blur(40px);
    z-index: -2;
    animation: splashMorph 10s ease-in-out infinite reverse;
}

.seo-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.seo-image-wrapper:hover::before {
    opacity: 0.5;
    filter: blur(40px);
    transform: scale(1.1);
}

.seo-image-wrapper:hover::after {
    opacity: 0.3;
    filter: blur(50px);
    transform: scale(1.15);
}

.seo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    position: relative;
    z-index: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 3px solid transparent;
    background: 
        linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        linear-gradient(
            135deg,
            var(--gradient-x-1-start) 0%,
            var(--gradient-x-1-mid) 50%,
            var(--gradient-x-2-start) 100%
        ) border-box;
}

.seo-image-wrapper:hover .seo-image {
    transform: scale(1.05);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(123, 44, 191, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Splash morph animatie */
@keyframes splashMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(5deg);
    }
    50% {
        border-radius: 50% 30% 60% 40% / 40% 50% 60% 30%;
        transform: rotate(-5deg);
    }
    75% {
        border-radius: 40% 70% 30% 60% / 70% 30% 50% 60%;
        transform: rotate(3deg);
    }
}

.seo-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.seo-intro-title .text-gradient {
    background: linear-gradient(
        135deg,
        var(--gradient-x-1-start) 0%,
        var(--gradient-x-1-mid) 50%,
        var(--gradient-x-2-start) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(123, 44, 191, 0.3));
}

.seo-intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.4;
    opacity: 0.95;
    text-align: left;
}

.seo-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: left;
}

.seo-intro-text p {
    margin-bottom: 1.5rem;
}

.seo-intro-text p:last-child {
    margin-bottom: 0;
}

.seo-intro-text strong {
    color: var(--text-white);
    font-weight: 600;
    position: relative;
}

.seo-intro-text strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--gradient-x-1-start),
        var(--gradient-x-2-start)
    );
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.seo-intro-text strong:hover::after {
    opacity: 0.6;
}

/* Background decorative elements */
.seo-intro-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(123, 44, 191, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .seo-intro-section {
        padding: 4rem 0;
    }
    
    .seo-intro-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .seo-intro-content {
        order: 1;
    }
    
    .seo-intro-image {
        max-width: 100%;
        order: 2;
    }
    
    .seo-intro-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .seo-intro-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-intro-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .seo-intro-section {
        padding: 3rem 0;
    }
    
    .seo-intro-wrapper {
        gap: 2rem;
    }
    
    .seo-intro-image {
        max-width: 100%;
    }
    
    .seo-image-wrapper::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        filter: blur(25px);
    }
    
    .seo-image-wrapper::after {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        filter: blur(35px);
    }
    
    .seo-image {
        border-radius: 50% 40% 60% 30% / 40% 60% 30% 70%;
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    
    .seo-image-wrapper:hover .seo-image {
        border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(123, 44, 191, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .seo-intro-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .seo-intro-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .seo-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .seo-intro-section::after {
        width: 400px;
        height: 400px;
    }
}

