/**
 * PNK GROUP Presence Section
 * Map section with title and description
 */

.pnk-presence-section {
    background-color: #f8f9fa;
}

.pnk-presence-section h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pnk-presence-section .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.pnk-presence-section .presence-map-container {
    margin-top: 2rem;
}

.pnk-presence-section .map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .pnk-presence-section h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .pnk-presence-section .section-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .pnk-presence-section .map-container {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .pnk-presence-section h2 {
        font-size: 1.5rem;
    }

    .pnk-presence-section .map-container {
        height: 300px !important;
    }
}

/* US Clients Section Styling */
.us-clients-section {
}

.us-clients-section .client-portfolio h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* International Clients Section Styling */
.international-clients-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.international-clients-section .client-portfolio h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Unified Client Logo Styling for Both Sections */
.us-clients-section .client-logo,
.international-clients-section .client-logo {
    min-width: 150px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--spacing-sm, 0.5rem);
}

.us-clients-section .client-logo img,
.international-clients-section .client-logo img,
.client-logo-img {
    max-height: 60px;
    min-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.us-clients-section .client-logo:hover img,
.international-clients-section .client-logo:hover img,
.client-logo:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .international-clients-section {
        padding: 2rem 0;
    }

    .us-clients-section .client-portfolio h3,
    .international-clients-section .client-portfolio h3 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}
