/* ==========================================================================
   CAMPAMENTOS Y EXCURSIONES EMPRESARIALES - VOLCANIC PARK
   Diseño Moderno, Limpio y de Alto Impacto
   Tipografías Oficiales: 'Rumikon' (encabezados) y 'Barlow' (cuerpo y datos)
   Degradados: Azul Oficial Volcanic Park + Púrpura Botón Cotización (#10326B -> #423C8C -> #6A43A6)
   ========================================================================== */

:root {
    /* Paleta Azul Oficial */
    --emp-blue-primary: #023675;
    --emp-blue-light: #0e58ad;
    --emp-blue-dark: #011d3d;
    --emp-blue-gradient: linear-gradient(180deg, #0e58ad 0%, #023675 100%);
    --emp-blue-gradient-h: linear-gradient(135deg, #0e58ad 0%, #023675 100%);

    /* Paleta Púrpura Extraída del Botón de Cotización */
    --emp-purple-top: #10326B;
    --emp-purple-mid: #423C8C;
    --emp-purple-bot: #6A43A6;
    --emp-purple-gradient: linear-gradient(180deg, #10326B 0%, #423C8C 50%, #6A43A6 100%);
    --emp-purple-gradient-h: linear-gradient(135deg, #10326B 0%, #423C8C 50%, #6A43A6 100%);

    /* Colores Base y Fondos */
    --emp-text-dark: #1e293b;
    --emp-text-muted: #64748b;
    --emp-border-light: #e2e8f0;
    --emp-shadow-sm: 0 2px 8px rgba(2, 54, 117, 0.06);
    --emp-shadow-md: 0 8px 24px rgba(2, 54, 117, 0.09);
    --emp-shadow-lg: 0 16px 40px rgba(2, 54, 117, 0.12);
    --emp-radius-sm: 12px;
    --emp-radius-md: 18px;
    --emp-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   ANIMACIONES ON-SCROLL (REVEAL AL BAJAR EN LA PÁGINA)
   ========================================================================== */
.emp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.emp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.emp-delay-1 { transition-delay: 0.12s; }
.emp-delay-2 { transition-delay: 0.22s; }
.emp-delay-3 { transition-delay: 0.32s; }
.emp-delay-4 { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
    .emp-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   CLASES DE TIPOGRAFÍA Y DEGRADADOS DE TEXTO
   ========================================================================== */
.emp-gradient-blue {
    background: var(--emp-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-gradient-purple {
    background: var(--emp-purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emp-gradient-purple-h {
    background: var(--emp-purple-gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BANNER PRINCIPAL RESPONSIVE (MEDIDAS EXACTAS DE HOSPEDAJE.PHP) --- */
.emp-banner {
    width: 100%;
    margin-top: 110px; /* Compensación para header fijo + cintillo en desktop */
    aspect-ratio: 768 / 450;
    height: auto;
    position: relative;
    overflow: hidden;
    line-height: 0;
    background: #021a38;
}

@media (min-width: 768px) {
    .emp-banner {
        aspect-ratio: 1024 / 500;
        margin-top: 110px;
    }
}

@media (min-width: 1024px) {
    .emp-banner {
        aspect-ratio: 1920 / 700;
        margin-top: 110px;
    }
}

@media (max-width: 768px) {
    .emp-banner {
        margin-top: 92px; /* Compensación exacta para header fijo + cintillo en móviles */
        aspect-ratio: 768 / 450;
    }
}

.emp-banner picture {
    width: 100%;
    height: 100%;
    display: block;
}

.emp-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* --- BARRA DE NAVEGACIÓN RÁPIDA (STICKY PILL BAR) --- */
.emp-nav-wrapper {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(2, 54, 117, 0.08);
    position: sticky;
    top: 90px;
    z-index: 90;
    border-bottom: 1px solid rgba(2, 54, 117, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.emp-nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.emp-nav-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.emp-nav-pill:hover {
    transform: translateY(-2px);
    border-color: #0e58ad;
    background: #f0f7ff;
    box-shadow: 0 6px 16px rgba(2, 54, 117, 0.1);
}

.emp-nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(2, 54, 117, 0.08);
    color: #023675;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.emp-nav-pill:hover .emp-nav-icon {
    background: #023675;
    color: #ffffff;
    transform: scale(1.05);
}

.emp-nav-pill.purple-pill:hover {
    border-color: #6A43A6;
    background: #faf5ff;
}

.emp-nav-pill.purple-pill .emp-nav-icon {
    background: rgba(106, 67, 166, 0.1);
    color: #6A43A6;
}

.emp-nav-pill.purple-pill:hover .emp-nav-icon {
    background: var(--emp-purple-gradient-h);
    color: #ffffff;
}

.emp-nav-text {
    display: flex;
    flex-direction: column;
}

.emp-nav-name {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #023675;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.emp-nav-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.2;
}

/* --- ESTRUCTURA GENERAL DE SECCIONES --- */
.emp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.emp-section {
    padding: 80px 0;
    position: relative;
}

.emp-section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(2, 54, 117, 0.06);
    border-bottom: 1px solid rgba(2, 54, 117, 0.06);
}

/* BADGES DE SECCIÓN */
.emp-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(14, 88, 173, 0.08);
    color: #0e58ad;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 88, 173, 0.18);
}

.emp-pill-badge.purple {
    background: rgba(106, 67, 166, 0.08);
    color: #6A43A6;
    border-color: rgba(106, 67, 166, 0.25);
}

/* --- SECCIÓN 1: INTRODUCCIÓN & PROPUESTA DE VALOR --- */
.emp-intro-wrapper {
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
}

.emp-main-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emp-sub-title {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.35;
}

.emp-intro-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--emp-text-dark);
    margin: 0 auto 40px auto;
    max-width: 920px;
}

/* Card para imagen de pilares */
.emp-values-showcase {
    background: #ffffff;
    border-radius: var(--emp-radius-lg);
    padding: 16px 20px;
    box-shadow: var(--emp-shadow-lg);
    border: 1.5px solid rgba(2, 54, 117, 0.08);
    display: inline-block;
    width: 100%;
    max-width: 1100px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emp-values-showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(2, 54, 117, 0.16);
}

.emp-values-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--emp-radius-sm);
}

/* --- SECCIÓN 2: UN DÍA DE EXCURSIÓN --- */
.emp-excursion-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.emp-section-heading {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.emp-lead-text {
    font-family: 'Barlow', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--emp-text-dark);
    margin-bottom: 24px;
}

/* Tags de eventos del speech */
.emp-events-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.emp-event-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #023675;
    box-shadow: var(--emp-shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.emp-event-chip:hover {
    transform: translateY(-2px);
    border-color: #6A43A6;
    color: #6A43A6;
}

.emp-event-chip i {
    color: #0e58ad;
    font-size: 13px;
}

.emp-event-chip:hover i {
    color: #6A43A6;
}

/* Tarjetas de Listas */
.emp-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emp-feature-card {
    background: #ffffff;
    border-radius: var(--emp-radius-md);
    padding: 24px 28px;
    border: 1.5px solid #e2e8f0;
    box-shadow: var(--emp-shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.emp-feature-card:hover {
    transform: translateY(-2px);
    border-color: #0e58ad;
    box-shadow: var(--emp-shadow-md);
}

.emp-feature-card.purple-card:hover {
    border-color: #6A43A6;
    box-shadow: 0 8px 24px rgba(106, 67, 166, 0.12);
}

.emp-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.emp-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--emp-blue-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(14, 88, 173, 0.25);
}

.emp-card-icon.purple-icon {
    background: var(--emp-purple-gradient-h);
    box-shadow: 0 4px 10px rgba(106, 67, 166, 0.3);
}

.emp-card-title {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #023675;
    margin: 0;
    line-height: 1.35;
}

.emp-chips-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
}

.emp-chip-item {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.emp-chip-item:hover {
    background: #f0f7ff;
    border-color: #cbd5e1;
}

.emp-chip-item i {
    color: #0e58ad;
    font-size: 14px;
    flex-shrink: 0;
}

.purple-card .emp-chip-item i {
    color: #6A43A6;
}

.purple-card .emp-chip-item:hover {
    background: #faf5ff;
    border-color: rgba(106, 67, 166, 0.3);
}

/* Cita destacada con acento púrpura */
.emp-quote-banner {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(106, 67, 166, 0.08) 0%, rgba(16, 50, 107, 0.03) 100%);
    border-left: 5px solid #6A43A6;
    padding: 18px 24px;
    border-radius: 0 var(--emp-radius-sm) var(--emp-radius-sm) 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.emp-quote-icon {
    font-size: 26px;
    color: #6A43A6;
    opacity: 0.8;
    flex-shrink: 0;
}

.emp-quote-text {
    font-family: 'Barlow', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #10326B;
    margin: 0;
    font-style: italic;
    line-height: 1.45;
}

/* Columna del Collage con visor y zoom */
.emp-collage-container {
    position: relative;
    border-radius: var(--emp-radius-lg);
    overflow: hidden;
    box-shadow: var(--emp-shadow-lg);
    background: #ffffff;
    border: 4px solid #ffffff;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.emp-collage-container:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 55px rgba(2, 54, 117, 0.22);
}

.emp-collage-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.emp-collage-container:hover .emp-collage-img {
    transform: scale(1.03);
}

.emp-collage-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(16, 50, 107, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: background 0.2s ease;
}

.emp-collage-container:hover .emp-collage-overlay {
    background: rgba(106, 67, 166, 0.95);
}

/* --- SECCIÓN 3: HOSPEDAJE Y ALIMENTOS --- */
.emp-services-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.emp-services-box {
    background: #ffffff;
    border-radius: var(--emp-radius-lg);
    padding: 44px;
    box-shadow: var(--emp-shadow-lg);
    border: 1.5px solid rgba(2, 54, 117, 0.08);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.emp-services-image-col {
    position: relative;
    border-radius: var(--emp-radius-md);
    overflow: hidden;
}

.emp-services-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--emp-radius-md);
    transition: transform 0.3s ease;
}

.emp-services-box:hover .emp-services-photo {
    transform: scale(1.02);
}

.emp-services-items-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emp-service-card-item {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--emp-radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.emp-service-card-item:hover {
    transform: translateX(4px);
    background: #f0f7ff;
    border-color: #0e58ad;
    box-shadow: var(--emp-shadow-sm);
}

.emp-service-card-item.purple-item:hover {
    background: #faf5ff;
    border-color: #6A43A6;
    box-shadow: 0 4px 16px rgba(106, 67, 166, 0.1);
}

.emp-service-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--emp-blue-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 88, 173, 0.25);
}

.emp-service-icon-wrap.purple-wrap {
    background: var(--emp-purple-gradient-h);
    box-shadow: 0 4px 12px rgba(106, 67, 166, 0.3);
}

.emp-service-content {
    flex: 1;
}

.emp-service-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #023675;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emp-service-title.purple-title {
    color: #423C8C;
}

.emp-service-text {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* --- SECCIÓN 4: CALL TO ACTION Y COTIZACIÓN --- */
.emp-cta-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.emp-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--emp-radius-lg);
    padding: 55px 35px;
    box-shadow: 0 20px 50px rgba(106, 67, 166, 0.14);
    border: 2px solid rgba(106, 67, 166, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--emp-purple-gradient-h);
}

.emp-cta-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

.emp-cta-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 35px 0;
}

.emp-cta-btn-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.emp-cta-btn-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    line-height: 0;
}

.emp-cta-btn-link:hover {
    transform: translateY(-5px) scale(1.03);
    filter: drop-shadow(0 14px 28px rgba(106, 67, 166, 0.4));
}

.emp-cta-btn-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contactos en el CTA */
.emp-cta-contacts-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.emp-cta-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #023675;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.emp-cta-contact-pill:hover {
    background: #faf5ff;
    border-color: #6A43A6;
    color: #6A43A6;
}

.emp-cta-contact-pill i {
    font-size: 16px;
    color: #0e58ad;
    transition: color 0.2s ease;
}

.emp-cta-contact-pill:hover i {
    color: #6A43A6;
}

/* --- LIGHTBOX MODAL PARA EL COLLAGE --- */
.emp-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 29, 61, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.emp-lightbox.active {
    display: flex;
    opacity: 1;
}

.emp-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--emp-radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.emp-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.emp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* --- RESPONSIVIDAD (TABLETS Y MÓVILES) --- */
@media (max-width: 1024px) {
    .emp-main-title {
        font-size: 40px;
    }
    
    .emp-sub-title {
        font-size: 23px;
    }
    
    .emp-intro-desc {
        font-size: 18px;
    }

    .emp-nav-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .emp-excursion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .emp-services-box {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .emp-nav-wrapper {
        top: 75px;
    }

    .emp-nav-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 8px 12px;
        gap: 8px;
    }

    .emp-nav-pill {
        padding: 8px 10px;
        gap: 8px;
    }

    .emp-nav-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .emp-nav-name {
        font-size: 13px;
    }

    .emp-nav-desc {
        display: none;
    }

    .emp-section {
        padding: 50px 0;
    }
    
    .emp-main-title {
        font-size: 32px;
    }
    
    .emp-sub-title {
        font-size: 20px;
    }
    
    .emp-intro-desc {
        font-size: 17px;
        margin-bottom: 28px;
    }
    
    .emp-section-heading {
        font-size: 30px;
    }
    
    .emp-lead-text {
        font-size: 17px;
    }
    
    .emp-chips-grid {
        grid-template-columns: 1fr;
    }
    
    .emp-feature-card {
        padding: 20px 18px;
    }

    .emp-quote-banner {
        padding: 16px;
        gap: 12px;
    }

    .emp-quote-text {
        font-size: 16px;
    }
    
    .emp-services-box {
        padding: 24px 16px;
    }

    .emp-service-card-item {
        padding: 18px 14px;
        gap: 14px;
    }

    .emp-service-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .emp-service-title {
        font-size: 18px;
    }

    .emp-service-text {
        font-size: 16px;
    }
    
    .emp-cta-card {
        padding: 38px 20px;
    }

    .emp-cta-title {
        font-size: 30px;
    }
    
    .emp-cta-subtitle {
        font-size: 18px;
    }
    
    .emp-cta-btn-img {
        max-width: 310px;
    }
}
