/* Exentec Modernization - 2025 */

/* 1. Global Typography Update: Inter */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
q,
blockquote,
.pa-h1-v2,
.pa-p-v1 {
    font-family: 'Inter', sans-serif !important;
}

/* Ensure font weights are preserved but clean */
strong,
b {
    font-weight: 700 !important;
}

/* 2. Glassmorphism Buttons (Preparation for next step, applied base rules) */
.pa-button-primary {
    transition: all 0.3s ease;
}

/* 3. Modern Language Switcher (Compact Version) */
.lang-toggle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    /* Smaller font */
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px !important;
    /* Extremely compact */
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-flex;
    /* Use inline-flex to avoid full width */
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    white-space: nowrap;
}

.lang-toggle i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* 4. Modern Contact Section (Light Layout) */
.pa-contact-modern {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pa-contact-modern .card {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.pa-contact-modern .icon-box {
    box-shadow: 0 5px 15px rgba(5, 125, 255, 0.3);
}

.pa-contact-modern h5 {
    font-weight: 700;
    color: #333;
}

.pa-contact-modern .social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.pa-contact-modern .social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.pa-contact-modern .map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure map is clean on light background */
.pa-contact-modern .map-container iframe {
    filter: none;
    /* No inversion for the light version */
}