/* Services Page Styles */

.services-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-header-container {
    position: relative;
    z-index: 2;
}

.services-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-header-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.services-header-shape {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.services-section {
    padding: 100px 0;
    background: var(--bg-accent);
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title-white {
    font-size: 2.5rem;
    color: white;
}

.savings-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.savings-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.digital-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.loan-color-primary {
    color: var(--primary);
}

.loan-color-secondary {
    color: var(--secondary);
}

.loan-color-accent {
    color: var(--accent);
}

.loan-color-green {
    color: var(--success);
}

.loan-color-red {
    color: var(--error);
}

.savings-icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.savings-card-title {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.savings-card-text {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.loans-section {
    padding: 100px 0;
    background: var(--bg-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.loan-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.loan-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.loan-icon-large {
    font-size: 40px;
    margin-bottom: 20px;
}

.loan-card-title {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.loan-card-text {
    color: var(--text-medium);
    line-height: 1.6;
}

.loan-card-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.digital-section {
    padding: 100px 0;
    background: var(--bg-accent);
    color: white;
}

.digital-img-wrapper {
    position: relative;
    padding-left: 20px;
}

.digital-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.digital-accent-box {
    position: absolute;
    top: -20px;
    left: 0;
    background: var(--secondary);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    z-index: -1;
}