/* ========== SERVICES PAGE STYLES ========== */

/* Services Hero */
.services-hero {
    padding: 1rem 0 1rem;
    background: linear-gradient(135deg, var(--grey-soft) 0%, var(--white-color) 100%);
    border-bottom: 1px solid var(--grey-border);
}

.services-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    /* margin-bottom: 1rem; */
}

.services-hero-subtitle {
    font-size: 1.0rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid Section */
.services-grid-section {
    padding: 0rem 0 2rem;
    background: var(--white-color);
}

.services-column-card {
    background: var(--white-color);
    border-radius: 24px;
    border: 1px solid var(--grey-border);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.services-column-card:hover {
    box-shadow: var(--shadow-soft);
}

.services-column-header {
    background: var(--grey-soft);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--grey-border);
}

.services-column-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.services-column-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.services-column-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.services-column-subtitle {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.services-list {
    padding: 0.5rem 0;
}

/* Service Item */
.service-item-link {
    text-decoration: none;
    display: block;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--grey-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: var(--primary-navy-soft);
}

.service-item-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-navy-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item-icon i {
    font-size: 1.1rem;
    color: var(--primary-navy);
}

.service-item-content {
    flex: 1;
    min-width: 0;
}

.service-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0 0 0.15rem 0;
    line-height: 1.3;
}

.service-item-desc {
    font-size: 0.82rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}

.service-item-arrow {
    color: var(--accent-slate);
    opacity: 0.4;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item:hover .service-item-arrow {
    opacity: 1;
    color: var(--primary-navy);
    transform: translateX(4px);
}

/* CTA Services */
.cta-services {
    padding: 2rem 0 5rem;
    background: var(--grey-soft);
}

.cta-services-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    padding: 3.5rem 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xld);
}

.cta-services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.75rem;
}

.cta-services-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0;
}

.btn-cta-services {
    background: var(--white-color);
    color: var(--primary-navy);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white-color);
    box-shadow: var(--shadow-sm);
}

.btn-cta-services:hover {
    background: transparent;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-button);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .cta-services-card {
        padding: 2.5rem;
    }
    
    .cta-services-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0 2rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-grid-section {
        padding: 2rem 0;
    }
    
    .services-column-header {
        padding: 1.5rem;
    }
    
    .service-item {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .service-item-title {
        font-size: 0.85rem;
    }
    
    .service-item-desc {
        font-size: 0.75rem;
    }
    
    .service-item-icon {
        width: 36px;
        height: 36px;
    }
    
    .service-item-icon i {
        font-size: 0.9rem;
    }
    
    .cta-services {
        padding: 2rem 0 3rem;
    }
    
    .cta-services-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .cta-services-text {
        max-width: 100%;
    }
    
    .cta-services-title {
        font-size: 1.4rem;
    }
    
    .text-lg-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .services-hero-title {
        font-size: 1.6rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-item {
        flex-wrap: wrap;
        padding: 0.9rem 1rem;
    }
    
    .service-item-arrow {
        margin-left: auto;
    }
    
    .btn-cta-services {
        width: 100%;
        text-align: center;
    }
}