/* Hero Section - Acquisition Clients */
.acquisition-clients-page .service-detail-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-secondary);
    padding: 1rem 0 0 0;
    text-align: center;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acquisition-clients-page .service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.acquisition-clients-page .service-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary-opacity-30), rgba(209, 127, 0, 0.85));
    z-index: 1;
}

.acquisition-clients-page .service-detail-hero .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem 2rem 1.5rem;
}

.acquisition-clients-page .service-detail-hero .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-card-sm);
}

.acquisition-clients-page .service-detail-hero .back-button:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-card-md);
    color: var(--color-primary-dark);
}

.acquisition-clients-page .service-detail-hero .back-button i {
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.acquisition-clients-page .service-detail-hero .back-button:hover i {
    transform: translateX(-3px);
}

.acquisition-clients-page .service-detail-hero h1 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px var(--color-primary-opacity-20);
}

.acquisition-clients-page .service-detail-hero .lead {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px var(--color-primary-opacity-10);
}

/* Animations */
.acquisition-clients-page .service-detail-hero h1,
.acquisition-clients-page .service-detail-hero .lead {
    animation: fadeInUp 0.8s ease-out forwards;
}

.acquisition-clients-page .service-detail-hero .lead {
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}