.localis-wrapper {
    font-family: "Be Vietnam Pro", Helvetica, sans-serif;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    background: #fbf9f2;
    padding: 30px;
}

.localis-intro-box {
    border: 1px solid #dcd7c6;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.intro-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.box-title {
    color: #1a4f3d;
    font-weight: 700;
    margin: 0;
    font-size: 20px;
}

.icon-leaf, .icon-handshake {
    background: #eeddbf;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 18px;
}

.localis-intro-box p {
    line-height: 1.6;
}

.localis-intro-box ul {
    padding-left: 0;
    margin-bottom: 0;
}

.localis-intro-box li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.localis-intro-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d69837;
}

.localis-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.localis-tabs button {
    flex: 1;
    padding: 16px;
    border: 1px solid #1a4f3d;
    background: #fff;
    color: #1a4f3d;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
    min-width: 200px;
}

.localis-tabs button.active {
    background: #1a4f3d;
    color: #fff;
    border-color: #1a4f3d;
    box-shadow: 0 4px 12px rgba(26, 79, 61, 0.2);
}

.localis-form-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.localis-form-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.localis-box {
    border: 1px solid #dcd7c6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.localis-box.header-box {
    background: #fff;
    border: 1px solid #dcd7c6;
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.form-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dcd7c6;
    z-index: 1;
}

.form-divider span {
    position: relative;
    background: #fbf9f2;
    padding: 0 15px;
    color: #555;
    font-style: italic;
    z-index: 2;
    font-size: 15px;
}

.field-box label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.required {
    color: #d62828;
}

.field-sub {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

.localis-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcd7c6;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
    background: #fafaf9;
}

.localis-input:focus {
    border-color: #1a4f3d;
    background: #fff;
}

.localis-input-file {
    padding: 10px 0;
    width: 100%;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.pill-group label.pill {
    cursor: pointer;
    display: inline-flex;
    margin: 0;
}

.pill-group label.pill input {
    display: none;
}

.pill-group label.pill span {
    padding: 10px 18px;
    border: 1px solid #dcd7c6;
    border-radius: 20px;
    font-size: 14px;
    background: #fff;
    color: #555;
    transition: 0.2s;
    user-select: none;
}

.pill-group label.pill input:checked + span {
    background: #f0ecdf;
    border-color: #d69837;
    color: #1a4f3d;
    font-weight: bold;
}

.localis-commit-box {
    background: #fffbf0;
    border: 1px solid #eeddbf;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}

.localis-submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a4f3d;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}
.localis-submit-btn:hover { background: #133a2c; }
.localis-submit-btn:disabled { background: #7c998f; cursor: not-allowed; }

.localis-form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.localis-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.localis-error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.localis-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
