/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 100px 5%;
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-primary);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.2);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--blue-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==================== SERVICE DETAIL PAGE ==================== */
.service-detail {
    padding-top: 120px;
    min-height: 100vh;
}

.detail-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.detail-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.4), rgba(10, 14, 39, 0.95));
    z-index: 1;
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.detail-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.detail-hero-content .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--blue-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    cursor: pointer;
}

.back-button:hover {
    background: var(--blue-primary);
    transform: translateX(-5px);
}

.detail-content {
    padding: 0 5% 100px 5%;
    background: var(--dark-bg);
}

.detail-section {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.detail-section h2 {
    font-size: 2.5rem;
    color: var(--blue-light);
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 2rem 0 1rem 0;
}

.detail-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--blue-primary);
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: bold;
}