/* Premium Services Grid CSS */

.premium-services-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #9ECC3B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 204, 59, 0.1);
    border-radius: 12px;
    color: #9ECC3B;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9ECC3B;
    font-weight: bold;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-cta svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.service-cta:hover {
    color: #9ECC3B;
}

.service-cta:hover svg {
    transform: translateX(4px);
}
