/* Services Section - Clean Layout */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.services-section .section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item.featured {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 70px 50px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.service-item h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 20px;
}

.service-item p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.service-item li {
    color: #e0e0e0;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-item li:before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    margin-bottom: 10px;
}

.service-header .service-price {
    margin-bottom: 0;
}

.service-description {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.service-features {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.service-cta {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
}

.service-cta:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.services-info {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.services-info p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 25px 15px;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 1.4rem;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}