/* Contact Services Styling */
.contact .footer-services {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    max-width: 250px;
}

.contact .footer-services h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.contact .footer-services h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact .footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact .footer-services ul li {
    margin-bottom: 10px;
}

.contact .footer-services ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .footer-services ul li a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact .footer-services {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin-bottom: 30px;
    }
}
