/**
 * VDS.CYOU Services Custom Stylesheet (Blue-White Theme)
 * Shared styles for service pages (Anti-DDoS, Colocation, Rack Colocation etc.)
 */

.text-purple, .text-blue {
    color: #2563EB;
}

.bg-purple, .bg-blue {
    background-color: #2563EB;
}

.border-purple, .border-blue {
    border-color: #2563EB !important;
}

.rounded {
    border-radius: 1rem !important;
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1) !important;
}

.service-card,
.security-card,
.feature-card {
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.08);
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-gradient {
    background: linear-gradient(145deg, #2563EB 0%, #60A5FA 100%);
    border-radius: 0 0 3rem 3rem;
}

.service-card:hover,
.security-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.btn {
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-purple, .btn-blue {
    background: linear-gradient(145deg, #2563EB 0%, #60A5FA 100%);
    border: none;
    color: white;
}

.btn-purple:hover, .btn-blue:hover {
    background: linear-gradient(145deg, #60A5FA 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.btn-outline-purple, .btn-outline-blue {
    color: #2563EB;
    border: 2px solid #2563EB;
    background: transparent;
}

.btn-outline-purple:hover, .btn-outline-blue:hover {
    background: linear-gradient(145deg, #2563EB 0%, #60A5FA 100%);
    color: white;
    border: 2px solid transparent;
}

.form-control,
.form-select {
    border-radius: 1rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.2rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* İstatistik kartları */
.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.service-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 1), transparent);
    z-index: 1;
}

.list-unstyled li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.list-unstyled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.list-unstyled li:hover {
    transform: translateX(5px);
    color: #2563EB;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2563EB;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(145deg, #2563EB 0%, #60A5FA 100%);
    color: white;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-card {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-gradient {
        border-radius: 0 0 2rem 2rem;
    }
    .service-section {
        padding: 3rem 0;
    }
    .feature-card,
    .security-card {
        padding: 1.5rem;
    }
}
