/* ========================================= */
/* BASE RESET & TYPOGRAPHY                   */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    width: 100%;
}

/* ========================================= */
/* VIDEO BACKGROUNDS & OVERLAY               */
/* ========================================= */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}

.video-layer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 2;
    pointer-events: none;
}

/* ========================================= */
/* TOP NAVIGATION (HEADER)                   */
/* ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-left {
    display: flex;
    align-items: center;
}

.lob-menu {
    display: flex;
    gap: 35px;
}

.lob-link, .back-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.lob-link:hover, .back-link:hover {
    color: #fff;
}

.lob-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.lob-link:hover::after {
    width: 100%;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================= */
/* LANGUAGE TOGGLE SWITCH                    */
/* ========================================= */
.lang-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.lang-toggle-wrapper:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.lang-label.active {
    color: #ffffff;
}

.toggle-track {
    width: 44px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ========================================= */
/* CENTRAL CONTENT LAYOUTS                   */
/* ========================================= */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.center-content.main-page {
    max-width: 1100px;
}

.center-content.sub-page {
    max-width: 900px;
}

/* Logos */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px; 
}

.logo-main {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.6));
}

.logo-sub {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
    opacity: 0.8;
}

/* Dynamic Hover Area (Main Page) */
.dynamic-area {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    justify-content: center;
}

.view-layer {
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.view-layer.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Value Cards Grid (Main Page) */
.values-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: center;
}

.value-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: #fff;
}

.value-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
}

/* Typography Specifics */
.lob-focus {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lob-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lob-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e5e7eb;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.page-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #e5e7eb;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.coming-soon-msg {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: italic;
    color: #a0b5cb;
    font-weight: 400;
}

.sub-page .coming-soon-msg {
    margin-top: 30px;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* ========================================= */
/* MOBILE RESPONSIVE DESIGN (Phones & Tablets)*/
/* ========================================= */
@media (max-width: 800px) {
    .header {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    .nav-left {
        width: 100%;
        justify-content: center;
    }
    .lob-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    .lob-link, .back-link {
        font-size: 0.85rem;
    }
    
    .center-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 160px auto 40px auto; 
    }
    
    /* Main Page Specifics */
    .values-grid {
        flex-direction: column;
        gap: 15px;
    }
    .value-card {
        padding: 20px 15px;
    }
    .logo-wrapper {
        margin-bottom: 30px;
    }
    .logo-main {
        width: 110px; 
    }
    .lob-title {
        font-size: 1.8rem;
    }
    .lob-desc {
        font-size: 1.1rem;
    }
    .dynamic-area {
        min-height: auto;
    }

    /* Sub Page Specifics */
    .header.sub-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .center-content.sub-page {
        margin-top: 140px; 
    }
    .logo-sub {
        width: 80px;
    }
    .page-title {
        font-size: 2.2rem;
    }
    .page-desc {
        font-size: 1.1rem;
    }
}