/* Split Hero Section */
.split-hero-section {
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    position: relative;
}

.text-side {
    background: #f8f9fa;
    padding: 80px;
    display: flex;
    align-items: center;
}

.image-side {
    height: 100vh;
    min-height: 800px;
    position: relative;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.pre-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4F46E5;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1f1f2e;
}

.hero-title .highlight {
    background: linear-gradient(120deg, #4F46E5, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6c757d;
}

.hero-cta .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #4F46E5, #8B5CF6);
    border: none;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.hero-cta .btn-outline {
    border: 2px solid #4F46E5;
    color: #4F46E5;
    background: transparent;
}

.hero-cta .btn-outline:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-3px);
}

.trust-badges {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.trust-badges span {
    margin-right: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.badges img {
    margin-right: 15px;
    filter: grayscale(100%) contrast(0.5);
    transition: all 0.3s ease;
}

.badges img:hover {
    filter: grayscale(0%) contrast(1);
}

/* Image Slider */
.slide-image {
    height: 100vh;
    min-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 31, 46, 0.4) 0%, rgba(15, 32, 39, 0.4) 100%);
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin: 0 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slide-counter {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.slide-counter .current-slide {
    color: #4F46E5;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .split-hero-section {
        height: auto;
        min-height: auto;
    }
    
    .text-side,
    .image-side {
        height: auto;
        min-height: 600px;
    }
    
    .text-side {
        padding: 60px 40px;
        order: 2;
    }
    
    .image-side {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .text-side {
        padding: 50px 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges span {
        margin-bottom: 15px;
        margin-right: 0;
    }
}