/* Clients Section Styles */
.clients-section {
    padding: 6rem 0;
    background: white;
}

.clients-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.clients-grid::before,
.clients-grid::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-grid::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.clients-grid::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients-grid.animate-scroll {
    animation: scroll-clients 30s linear infinite;
    display: flex;
    width: fit-content;
}

.clients-grid.animate-scroll:hover {
    animation-play-state: paused;
}

.client-card {
    background: var(--background-light);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    min-height: 120px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.client-logo-placeholder {
    width: 100%;
}

.client-logo-placeholder p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
}

.client-logo-placeholder span {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-medium);
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-tagline {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #ccc;
}

.footer-contact strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-location {
    font-weight: 600;
    color: var(--accent-color) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Footer and Clients */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-social {
        flex-direction: column;
    }
}
