/* ===========================
   SERVICES STYLES - brockdev
   Specific for services/index.html
   =========================== */

.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 2rem;
    color: #aaa;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(101, 86, 183, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(101, 86, 183, 0.3);
}

.card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border: 2px solid #333;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    z-index: 2;
}

.card-icon i { font-size: 4.5rem; transition: all 0.3s ease; }

.service-card:hover .card-icon {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    z-index: 2;
}

.service-card p {
    font-size: 1.6rem;
    color: #aaa;
    line-height: 1.6;
    z-index: 2;
}

/* Service specific variations */
.web .card-icon { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.web .card-icon i { color: #60a5fa; }
.web:hover { border-color: #3b82f6; box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3); }

.discord .card-icon { background: linear-gradient(135deg, #4752C4, #5865F2); }
.discord .card-icon i { color: #7289da; }
.discord:hover { border-color: #5865F2; box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3); }

.editing .card-icon { background: linear-gradient(135deg, #be123c, #e11d48); }
.editing .card-icon i { color: #f87171; }
.editing:hover { border-color: #e11d48; box-shadow: 0 15px 40px rgba(225, 29, 72, 0.3); }

@media(max-width: 768px) {
    .services-title { font-size: 3.5rem; }
    .services-subtitle { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; gap: 30px; }
    .service-card { padding: 30px 20px; }
    .card-icon { width: 80px; height: 80px; }
    .card-icon i { font-size: 3.5rem; }
    .service-card h3 { font-size: 2rem; }
    .service-card p { font-size: 1.4rem; }
}
