/* Services Page Styles */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h1 {
    color: var(--highlight-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233,69,96,0.3);
    border-color: var(--highlight-color);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-right: 1rem;
}

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

.service-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.service-features i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.service-footer {
    margin-top: auto;
    text-align: center;
}

.service-footer .btn {
    width: 100%;
}

.feature-link {
    color: var(--highlight-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #ff6b6b;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
}