:root {
    --primary-color: #4f46e5;
    --text-white: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

.page-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.bg-vector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.bg-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(79, 70, 229, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.language-picker {
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

main {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.greeting {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
}

.status-msg {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
}

.illustration-container {
    width: 100%;
    margin-bottom: 40px;
}

.illustration {
    width: 100%;
    max-width: 300px;
}

.footer-msg {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 60px;
}

.contact-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo-small {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
    object-fit: contain;
}

@media (max-width: 800px) {
    header {
        padding: 15px 20px;
    }

    .greeting {
        font-size: 28px;
        margin-top: 20px;
    }

    .status-msg {
        font-size: 20px;
    }

    .illustration {
        max-width: 250px;
    }

    .footer-msg {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .logo-small {
        height: 60px;
    }

    .contact-card {
        padding: 12px 16px;
        border-radius: 12px;
    }
}

.contact-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-box img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.icon-box img.phone-icon {
    height: 32px;
}

.contact-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-white);
    text-decoration: none;
}

.contact-text.underline {
    text-decoration: underline;
}

footer {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Language Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
}

.drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    color: #1F2024;
    text-align: left;
}

.drawer.active {
    transform: translateY(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.drawer-header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #1F2024;
}

.close-btn {
    cursor: pointer;
    padding: 4px;
}


.language-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.language-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    background: #F8F9FE;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    color: #1F2024;
}

.language-item.selected {
    background: #4f46e5;
    color: white;
}

.language-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.confirm-btn {
    width: 100%;
    background: #4f46e5;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}