/**
 * Check-In Page Specific Styles
 */

/* ===== LANGUAGE SELECTION ===== */
.language-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.language-option {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    flex: 1;
    max-width: calc(50% - 15px);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    text-align: center;
    cursor: pointer;
}

.language-option:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242,140,0,.15);
}

.language-flag {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.language-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.language-desc {
    font-size: 14px;
    color: var(--dark);
}

/* ===== FORM STYLES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
    color: var(--white);
}

.help-banner {
    background: var(--cream);
    color: var(--black);
    padding: 30px 24px;
    border-radius: 12px;
    margin: 24px 0 34px;
    box-shadow: 0 8px 24px rgba(255, 242, 209, 0.2);
    text-align: center;
}

.help-banner .phone {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .5px;
}

.help-banner .phone a {
    color: var(--brand);
    text-decoration: none;
}

.help-banner .phone a:hover {
    color: var(--brand-dark);
}

.card {
    background: var(--white);
    color: var(--dark);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.full {
    grid-column: 1/-1;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input:not([type]),
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: #111;
    height: auto;
    min-height: 48px;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.hint {
    color: #555;
    font-size: 13px;
    margin-top: 6px;
}

/* ===== BUTTONS ===== */
.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.btn {
    border: 0;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: var(--black);
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

.btn-ghost {
    background: #eee;
    color: #111;
}

.note {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

.success {
    color: var(--success);
    font-weight: 700;
    display: none;
}

.error {
    color: var(--error);
    font-weight: 700;
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .language-cards {
        flex-direction: column;
        gap: 20px;
    }

    .language-option {
        padding: 30px 80px;
        min-width: 300px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .language-option {
        padding: 40px 40px;
        min-width: auto;
        width: 100%;
        height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .language-flag {
        font-size: 40px;
    }

    .language-name {
        font-size: 20px;
    }
}
