.subhero-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.subhero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.subhero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.3) 0%, rgba(233, 236, 239, 0.3) 100%);
    z-index: 2;
}

.subhero-container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.subhero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.subhero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.subhero-title .highlight {
    color: #f4821f;
}

.subhero-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.5);
}

.subhero-cta {
    display: flex;
    gap: 15px;
}

.subhero-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.subhero-btn-primary {
    background: #f4821f;
    color: white;
    border: 2px solid #f4821f;
}

.subhero-btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 130, 31, 0.3);
}

.subhero-btn-secondary {
    background: transparent;
    color: #f4821f;
    border: 2px solid #f4821f;
}

.subhero-btn-secondary:hover {
    background: rgba(244, 130, 31, 0.1);
    transform: translateY(-2px);
}

.subhero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subhero-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: floatAnimation 4s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.1);
}

.subhero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 68, 242, 0.1);
    z-index: 1;
    animation: pulseAnimation 3s ease-in-out infinite;
}

.subhero-decoration-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.subhero-decoration-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .subhero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .subhero-cta {
        justify-content: center;
    }

    .subhero-image {
        margin-top: 40px;
        width: 70%;
    }
}

@media (max-width: 768px) {
    .subhero-section {
        padding: 60px 0;
    }

    .subhero-title {
        font-size: 2.2rem;
    }

    .subhero-description {
        font-size: 1rem;
    }
} 