/* =========================================
   Wealth Solution Page Styles
   ========================================= */

/* Reuse Service Hero from FA.css pattern but with potentially distinct visual cues if needed */
.service-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(34, 181, 115, 0.1) 50%, rgba(34, 181, 115, 0.04) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    /* Different position for variety */
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 181, 115, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 500;
}

/* Content Section */
.service-content {
    padding: 80px 0;
    background-color: var(--warm-white);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0.8;
    text-align: center;
    position: relative;
}

.content-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: translateY(-10px);
}

.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(34, 181, 115, 0.1);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(34, 181, 115, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(61, 90, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

/* Decorative Elements */
.shape-green {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .service-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }
}