/* ========================================
   LaborExpo Public Page Styles
   ======================================== */

.le-page {
    overflow: hidden;
}

/* ===== HERO ===== */
.le-hero {
    position: relative;
    background: linear-gradient(135deg, #003f7d 0%, #0064D2 40%, #1a7ae6 100%);
    padding: 80px 0 60px;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.le-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.le-hero-stripe {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
}

.le-hero-stripe-1 {
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    transform: skewX(-12deg);
}

.le-hero-stripe-2 {
    top: 0;
    right: -10%;
    width: 35%;
    height: 70%;
    transform: skewX(-12deg);
    background: rgba(255, 255, 255, 0.05);
}

.le-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.le-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: white;
    line-height: 0.95;
    margin: 0 0 24px;
    letter-spacing: -2px;
}

.le-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 500px;
    line-height: 1.5;
}

.le-hero-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.le-hero-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.le-hero-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 50px;
}

.le-hero-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.le-hero-link {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.3s;
}

.le-hero-link:hover {
    color: white;
    border-color: white;
}

.le-hero-brand {
    position: absolute;
    right: 40px;
    bottom: 0;
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
}

/* ===== SECTIONS ===== */
.le-section {
    padding: 80px 0;
}

.le-section-dark {
    background: #f8f9fb;
}

.le-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.le-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 32px;
}

.le-section-title-light {
    color: #1a1a2e;
}

.le-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #003f7d 0%, #0064D2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== ABOUT GRID ===== */
.le-about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.le-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a5a;
    margin: 0 0 32px;
}

.le-booth-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #e8f0fe 0%, #dce8fc 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid #c8d8f0;
}

.le-booth-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #003f7d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.le-booth-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.le-booth-text {
    font-size: 0.95rem;
    color: #4a4a5a;
    line-height: 1.6;
    margin: 0;
}

.le-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #003f7d;
    padding: 14px 20px;
    background: #f0f5ff;
    border-radius: 12px;
    border: 1px solid #dce8fc;
}

.le-hours i {
    font-size: 1rem;
}

/* ===== HIGHLIGHTS ===== */
.le-highlights-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 63, 125, 0.1);
    border: 1px solid #e0eaf5;
    margin-bottom: 24px;
}

.le-highlights-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.le-highlights-title i {
    color: #003f7d;
}

.le-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.le-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f8;
    font-size: 0.95rem;
    color: #3a3a4a;
    line-height: 1.5;
}

.le-highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.le-highlight-item:first-child {
    padding-top: 0;
}

.le-highlight-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #003f7d 0%, #0064D2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== MAP ===== */
.le-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0eaf5;
    background: white;
}

.le-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.le-booth-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #003f7d 0%, #0064D2 100%);
    color: white;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 63, 125, 0.25);
}

.le-booth-badge i {
    font-size: 1.1rem;
}

.le-booth-badge strong {
    font-weight: 800;
    font-size: 1.15rem;
}

/* ===== EXTERNAL LINKS ===== */
.le-links-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f5;
}

.le-links-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.le-ext-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #3a3a4a;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
    margin-bottom: 6px;
    border: 1px solid transparent;
}

.le-ext-link:hover {
    background: #e8f0fe;
    color: #003f7d;
    border-color: #c8d8f0;
    text-decoration: none;
}

.le-ext-link i:first-child {
    color: #003f7d;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.le-ext-link span {
    flex: 1;
}

.le-ext-arrow {
    font-size: 0.75rem;
    color: #ccc;
    transition: transform 0.25s, color 0.25s;
}

.le-ext-link:hover .le-ext-arrow {
    transform: translateX(4px);
    color: #003f7d;
}

/* ===== VIDEOS ===== */
.le-video-category {
    font-size: 1.15rem;
    font-weight: 700;
    color: #003f7d;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c8d8f0;
}

.le-video-category-partner {
    margin-top: 48px;
}

.le-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.le-video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f5;
}

.le-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 63, 125, 0.15);
}

.le-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.le-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.le-video-info {
    padding: 16px 20px;
}

.le-video-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}

/* ===== CTA ===== */
.le-section-cta {
    background: linear-gradient(135deg, #003f7d 0%, #0064D2 40%, #1a7ae6 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.le-section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-12deg);
}

.le-cta-content {
    position: relative;
    z-index: 1;
}

.le-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
}

.le-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

.le-cta-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.le-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.le-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: white;
    color: #003f7d;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.le-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #002a54;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .le-about-grid {
        grid-template-columns: 1fr;
    }

    .le-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .le-hero-content {
        padding: 0 24px;
    }

    .le-hero-brand {
        display: none;
    }

    .le-section {
        padding: 60px 0;
    }

    .le-container {
        padding: 0 24px;
    }

    .le-video-grid {
        grid-template-columns: 1fr;
    }

    .le-section-cta {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .le-hero-title {
        font-size: 2.8rem;
    }

    .le-hero-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .le-booth-card {
        flex-direction: column;
        gap: 12px;
    }

    .le-cta-details {
        flex-direction: column;
        align-items: center;
    }
}
