/* SPK Services Section Styles */
.spk-services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    /* Light grey background */
    font-family: 'Libre Franklin', sans-serif;
    position: relative;
    overflow: hidden;
}

.spk-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.spk-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-services-subtitle {
    display: inline-block;
    color: #71b100;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.spk-services-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 3rem;
    color: #222;
    margin: 0;
    position: relative;
    display: inline-block;
}

.spk-services-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #71b100;
    margin: 20px auto 0;
}

/* Grid Layout */
.spk-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1000px;
    /* For 3D effects if needed */
}

/* Service Card */
.spk-service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    opacity: 0;
    /* Hidden initially for GSAP */
    transform: translateY(30px);
}

.spk-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #71b100;
    z-index: -1;
    transition: height 0.4s ease;
    border-radius: 12px 12px 0 0;
    opacity: 0.05;
}

.spk-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 177, 0, 0.15);
    border-bottom-color: #71b100;
}

.spk-service-card:hover::before {
    height: 100%;
}

/* Icon Styles */
.spk-service-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(113, 177, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.spk-service-card:hover .spk-service-icon-wrapper {
    background-color: #71b100;
    transform: rotateY(360deg);
}

.spk-service-icon {
    font-size: 30px;
    color: #71b100;
    transition: color 0.4s ease;
}

.spk-service-card:hover .spk-service-icon {
    color: #ffffff;
}

/* Content Styles */
.spk-service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display SC', serif;
}

.spk-service-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .spk-services-section {
        padding: 60px 0;
    }

    .spk-services-title {
        font-size: 2.2rem;
    }

    .spk-services-grid {
        grid-template-columns: 1fr;
    }

    .spk-service-card {
        align-items: center;
        text-align: center;
    }
}