/* Services Section Styles */
.service-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-overview .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #444;
}

.service-detailed-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s ease;
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(243, 166, 0, 0.03) 100%);
    z-index: 0;
}

.service-detailed-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(243, 166, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-detailed-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.service-detailed-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-detailed-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 35px;
    color: #555;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-features li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-detail-content {
    margin: 30px 0;
    padding: 25px;
    background: rgba(243, 166, 0, 0.05);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.service-detail-content h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-detailed-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-features li {
        font-size: 1rem;
        padding: 10px 0 10px 30px;
    }
}

@media (max-width: 767px) {
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .service-detailed-card h3 {
        font-size: 1.4rem;
    }
}
